/linux-6.3-rc2/tools/power/cpupower/utils/helpers/ |
A D | misc.c | 137 int str_len = 0; in print_online_cpus() local 140 str_len = online_cpus->size * 5; in print_online_cpus() 141 online_cpus_str = (void *)malloc(sizeof(char) * str_len); in print_online_cpus() 144 bitmask_displaylist(online_cpus_str, str_len, online_cpus); in print_online_cpus() 155 int str_len = 0; in print_offline_cpus() local 158 str_len = offline_cpus->size * 5; in print_offline_cpus() 159 offline_cpus_str = (void *)malloc(sizeof(char) * str_len); in print_offline_cpus() 162 bitmask_displaylist(offline_cpus_str, str_len, offline_cpus); in print_offline_cpus()
|
/linux-6.3-rc2/security/selinux/ |
A D | xfrm.c | 81 u32 str_len; in selinux_xfrm_alloc_user() local 88 str_len = uctx->ctx_len; in selinux_xfrm_alloc_user() 89 if (str_len >= PAGE_SIZE) in selinux_xfrm_alloc_user() 92 ctx = kmalloc(struct_size(ctx, ctx_str, str_len + 1), gfp); in selinux_xfrm_alloc_user() 98 ctx->ctx_len = str_len; in selinux_xfrm_alloc_user() 99 memcpy(ctx->ctx_str, &uctx[1], str_len); in selinux_xfrm_alloc_user() 100 ctx->ctx_str[str_len] = '\0'; in selinux_xfrm_alloc_user() 350 u32 str_len; in selinux_xfrm_state_alloc_acquire() local 359 &str_len); in selinux_xfrm_state_alloc_acquire() 372 ctx->ctx_len = str_len; in selinux_xfrm_state_alloc_acquire() [all …]
|
/linux-6.3-rc2/tools/power/acpi/os_specific/service_layers/ |
A D | osunixdir.c | 95 int str_len; in acpi_os_get_next_filename() local 106 str_len = strlen(dir_entry->d_name) + in acpi_os_get_next_filename() 109 temp_str = calloc(str_len, 1); in acpi_os_get_next_filename()
|
/linux-6.3-rc2/lib/ |
A D | parser.c | 69 size_t str_len = strlen(s); in match_one() local 71 if (str_len == 0) in match_one() 73 if (len == -1 || len > str_len) in match_one() 74 len = str_len; in match_one()
|
/linux-6.3-rc2/drivers/gpu/drm/amd/display/amdgpu_dm/ |
A D | amdgpu_dm_debugfs.c | 193 uint8_t str_len = 0; in dp_link_settings_read() local 210 rd_buf_ptr += str_len; in dp_link_settings_read() 217 rd_buf_ptr += str_len; in dp_link_settings_read() 224 rd_buf_ptr += str_len; in dp_link_settings_read() 1361 rd_buf_ptr += str_len; in dp_dsc_clock_en_read() 1547 rd_buf_ptr += str_len; in dp_dsc_slice_width_read() 1731 rd_buf_ptr += str_len; in dp_dsc_slice_height_read() 1911 rd_buf_ptr += str_len; in dp_dsc_bits_per_pixel_read() 2086 rd_buf_ptr += str_len; in dp_dsc_pic_width_read() 2142 rd_buf_ptr += str_len; in dp_dsc_pic_height_read() [all …]
|
/linux-6.3-rc2/kernel/trace/ |
A D | trace_events_inject.c | 223 int str_len = strlen(addr) + 1; in parse_entry() local 227 entry_size += str_len; in parse_entry() 235 strlcpy(entry + (entry_size - str_len), addr, str_len); in parse_entry() 239 *str_item = (str_len << 16) | str_loc; in parse_entry()
|
A D | trace_events_filter.c | 812 int str_len = str_item >> 16; in filter_pred_strloc() local 816 cmp = pred->regex.match(addr, &pred->regex, str_len); in filter_pred_strloc() 835 int str_len = str_item >> 16; in filter_pred_strrelloc() local 839 cmp = pred->regex.match(addr, &pred->regex, str_len); in filter_pred_strrelloc()
|
/linux-6.3-rc2/tools/lib/bpf/ |
A D | libbpf_probes.c | 219 const char *str_sec, size_t str_len) in libbpf__load_raw_btf() argument 227 .str_len = str_len, in libbpf__load_raw_btf() 232 btf_len = hdr.hdr_len + hdr.type_len + hdr.str_len; in libbpf__load_raw_btf() 239 memcpy(raw_btf + hdr.hdr_len + hdr.type_len, str_sec, hdr.str_len); in libbpf__load_raw_btf()
|
A D | libbpf_internal.h | 108 size_t str_len = strlen(str); in str_has_sfx() local 111 if (sfx_len > str_len) in str_has_sfx() 113 return strcmp(str + str_len - sfx_len, sfx) == 0; in str_has_sfx() 367 const char *str_sec, size_t str_len);
|
A D | btf.c | 217 h->str_len = bswap_32(h->str_len); in btf_bswap_hdr() 273 const char *end = start + btf->hdr->str_len; in btf_parse_str_sec() 275 if (btf->base_btf && hdr->str_len == 0) in btf_parse_str_sec() 277 if (!hdr->str_len || hdr->str_len - 1 > BTF_MAX_STR_OFFSET || end[-1]) { in btf_parse_str_sec() 834 btf->start_str_off = base_btf->hdr->str_len; in btf_new_empty() 884 btf->start_str_off = base_btf->hdr->str_len; in btf_new() 1297 memcpy(p, btf_strs_data(btf), hdr->str_len); in btf_get_raw_data() 1298 p += hdr->str_len; in btf_get_raw_data() 1471 if (btf->hdr->str_len == 0) in btf_ensure_modifiable() 1668 old_strs_len = btf->hdr->str_len; in btf__add_btf() [all …]
|
/linux-6.3-rc2/tools/power/x86/intel-speed-select/ |
A D | isst-display.c | 9 static void printcpulist(int str_len, char *str, int mask_size, in printcpulist() argument 15 snprintf(str, str_len, "none"); in printcpulist() 26 str_len - curr_index, ","); in printcpulist() 28 if (curr_index >= str_len) in printcpulist() 31 index = snprintf(&str[curr_index], str_len - curr_index, "%d", in printcpulist() 34 if (curr_index >= str_len) in printcpulist() 40 static void printcpumask(int str_len, char *str, int mask_size, in printcpumask() argument 68 index = snprintf(&str[curr_index], str_len - curr_index, "%08x", in printcpumask() 71 if (curr_index >= str_len) in printcpumask() 74 strncat(&str[curr_index], ",", str_len - curr_index); in printcpumask() [all …]
|
/linux-6.3-rc2/security/tomoyo/ |
A D | realpath.c | 23 char *tomoyo_encode2(const char *str, int str_len) in tomoyo_encode2() argument 33 for (i = 0; i < str_len; i++) { in tomoyo_encode2() 50 for (i = 0; i < str_len; i++) { in tomoyo_encode2()
|
/linux-6.3-rc2/fs/udf/ |
A D | unicode.c | 277 const uint8_t *str_i, int str_len) in udf_name_to_CS0() argument 300 for (i = 0; i < str_len; i += len) { in udf_name_to_CS0() 307 len = conv_f(&str_i[i], str_len - i, &wchar); in udf_name_to_CS0() 311 len = utf8_to_utf32(&str_i[i], str_len - i, in udf_name_to_CS0()
|
/linux-6.3-rc2/kernel/bpf/preload/iterators/ |
A D | iterators.bpf.c | 31 __u32 str_len; member 71 if (name_off >= btf->hdr.str_len) in get_name()
|
/linux-6.3-rc2/security/selinux/ss/ |
A D | sidtab.h | 139 const char *str, u32 str_len); 145 const char *str, u32 str_len) in sidtab_sid2str_put() argument
|
A D | sidtab.c | 559 const char *str, u32 str_len) in sidtab_sid2str_put() argument 578 cache = kmalloc(struct_size(cache, str, str_len), GFP_ATOMIC); in sidtab_sid2str_put() 592 cache->len = str_len; in sidtab_sid2str_put() 593 memcpy(cache->str, str, str_len); in sidtab_sid2str_put()
|
/linux-6.3-rc2/include/uapi/linux/ |
A D | btf.h | 21 __u32 str_len; /* length of string section */ member
|
/linux-6.3-rc2/tools/include/uapi/linux/ |
A D | btf.h | 21 __u32 str_len; /* length of string section */ member
|
/linux-6.3-rc2/tools/testing/selftests/bpf/progs/ |
A D | syscall.c | 43 .str_len = sizeof(__u32), in btf_load()
|
/linux-6.3-rc2/tools/hv/ |
A D | hv_kvp_daemon.c | 1181 int str_len; in kvp_set_ip_info() local 1305 str_len = snprintf(cmd, sizeof(cmd), KVP_SCRIPTS_PATH "%s %s", in kvp_set_ip_info() 1311 if (str_len <= 0 || (unsigned int)str_len >= sizeof(cmd)) { in kvp_set_ip_info() 1313 cmd, str_len); in kvp_set_ip_info()
|
/linux-6.3-rc2/tools/perf/util/cs-etm-decoder/ |
A D | cs-etm-decoder.c | 200 const int str_len) in cs_etm_decoder__print_str_cb() argument 204 if (p_context && str_len && !decoder->suppress_printing) in cs_etm_decoder__print_str_cb()
|
/linux-6.3-rc2/drivers/gpu/drm/amd/amdgpu/ |
A D | atom.c | 1386 unsigned short str_len; in atom_find_str_in_rom() local 1389 str_len = strnlen(str, maxlen); in atom_find_str_in_rom() 1393 for (str_off = 0; str_off < str_len; ++str_off) { in atom_find_str_in_rom() 1398 if (str_off == str_len || str[str_off] == 0) in atom_find_str_in_rom()
|
/linux-6.3-rc2/drivers/hid/ |
A D | hid-uclogic-params.c | 570 const size_t str_len = 16; in uclogic_params_frame_init_v1() local 583 str_buf = kzalloc(str_len, GFP_KERNEL); in uclogic_params_frame_init_v1() 589 rc = usb_string(usb_dev, 123, str_buf, str_len); in uclogic_params_frame_init_v1()
|
/linux-6.3-rc2/net/tipc/ |
A D | netlink_compat.c | 167 int str_len = strlen(str) + 1; in tipc_get_err_tlv() local 170 buf = tipc_tlv_alloc(TLV_SPACE(str_len)); in tipc_get_err_tlv() 172 tipc_add_tlv(buf, TIPC_TLV_ERROR_STRING, str, str_len); in tipc_get_err_tlv()
|
/linux-6.3-rc2/tools/testing/selftests/bpf/ |
A D | test_verifier.c | 754 .str_len = strings_len, in load_btf_spec() 773 memcpy(ptr, strings, hdr.str_len); in load_btf_spec() 774 ptr += hdr.str_len; in load_btf_spec()
|