Searched refs:string (Results 276 - 300 of 3814) sorted by relevance

<<11121314151617181920>>

/linux-master/tools/testing/selftests/bpf/progs/
H A Dsockopt_qos_to_cc.c3 #include <string.h>
/linux-master/arch/riscv/kernel/
H A Dcpu_ops_spinwait.c8 #include <linux/string.h>
/linux-master/fs/btrfs/
H A Drcu-string.h10 #include <linux/string.h>
/linux-master/arch/s390/lib/
H A DMakefile6 lib-y += delay.o string.o uaccess.o find.o spinlock.o tishift.o
/linux-master/tools/net/ynl/samples/
H A Dovs.c3 #include <string.h>
/linux-master/security/selinux/ss/
H A Dsymtab.c9 #include <linux/string.h>
/linux-master/arch/arm64/kernel/pi/
H A Dkaslr_early.c13 #include <linux/string.h>
/linux-master/tools/perf/arch/x86/util/
H A Dpmu.c2 #include <string.h>
/linux-master/tools/testing/selftests/mm/
H A Don-fault-limit.c5 #include <string.h>
/linux-master/arch/loongarch/include/asm/
H A Dbug.h13 10002: .string file; \
/linux-master/drivers/net/fddi/skfp/h/
H A Dtargetos.h63 #define FDDI_TRACE(string, arg1, arg2, arg3) // Performance analysis.
65 #define NDD_TRACE(string, arg1, arg2, arg3) // Performance analysis.
/linux-master/arch/um/include/shared/
H A Dinit.h79 #define __non_empty_string(dummyname,string) \
82 char _string[sizeof(string)-2]; \
/linux-master/tools/lib/api/fs/
H A Dtracing_path.c8 #include <string.h>
9 #include <linux/string.h>
/linux-master/fs/proc/
H A Droot.c68 if (!kstrtouint(param->string, base, &result.uint_32)) {
70 return invalf(fc, "proc: unknown value of hidepid - %s\n", param->string);
75 if (!strcmp(param->string, "off"))
77 else if (!strcmp(param->string, "noaccess"))
79 else if (!strcmp(param->string, "invisible"))
81 else if (!strcmp(param->string, "ptraceable"))
84 return invalf(fc, "proc: unknown value of hidepid - %s\n", param->string);
133 if (proc_parse_subset_param(fc, param->string) < 0)
/linux-master/drivers/net/ethernet/hisilicon/hns3/hns3pf/
H A Dhclge_tm.h227 #define hclge_tm_set_field(dest, string, val) \
229 (HCLGE_TM_SHAP_##string##_MSK), \
230 (HCLGE_TM_SHAP_##string##_LSH), val)
231 #define hclge_tm_get_field(src, string) \
232 hnae3_get_field((src), HCLGE_TM_SHAP_##string##_MSK, \
233 HCLGE_TM_SHAP_##string##_LSH)
/linux-master/security/tomoyo/
H A Dutil.c107 * @string: String representation for permissions in foo/bar/buz format.
108 * @keyword: Keyword to find from @string/
110 * Returns true if @keyword was found in @string, false otherwise.
114 bool tomoyo_permstr(const char *string, const char *keyword) argument
116 const char *cp = strstr(string, keyword);
119 return cp == string || *(cp - 1) == '/';
178 * @str: Pointer to string to parse.
307 * tomoyo_byte_range - Check whether the string is a \ooo style octal value.
309 * @str: Pointer to the string.
374 * tomoyo_str_starts - Check whether the given string start
435 tomoyo_correct_word2(const char *string, size_t len) argument
518 tomoyo_correct_word(const char *string) argument
[all...]
/linux-master/drivers/acpi/acpica/
H A Dacutils.h110 /* Flags to indicate implicit or explicit string-to-integer conversion */
186 * utstrsuppt - string-to-integer conversion support functions
188 acpi_status acpi_ut_convert_octal_string(char *string, u64 *return_value);
190 acpi_status acpi_ut_convert_decimal_string(char *string, u64 *return_value_ptr);
192 acpi_status acpi_ut_convert_hex_string(char *string, u64 *return_value_ptr);
194 char acpi_ut_remove_whitespace(char **string);
196 char acpi_ut_remove_leading_zeros(char **string);
198 u8 acpi_ut_detect_hex_prefix(char **string);
200 void acpi_ut_remove_hex_prefix(char **string);
202 u8 acpi_ut_detect_octal_prefix(char **string);
[all...]
/linux-master/drivers/greybus/
H A Dmanifest.c17 return "string";
125 expected_size += desc->string.length;
175 * Find the string descriptor having the given id, validate it, and
177 * which guarantees the returned string is NUL-terminated.
179 * String index 0 is valid (it represents "no string"), and for
183 * descriptor string, or an error-coded pointer on failure.
190 char *string; local
192 /* A zero string id means no string (but no error) */
210 string
[all...]
/linux-master/scripts/genksyms/
H A Dparse.y16 #include <string.h>
58 add_symbol(i->string, type, b, is_extern);
297 current_name = (*$1)->string;
306 current_name = (*$1)->string;
475 const char *name = strdup((*$1)->string);
480 const char *name = strdup((*$1)->string);
496 { export_symbol((*$3)->string); $$ = $5; }
/linux-master/sound/soc/sof/
H A Dsof-client-ipc-flood-test.c135 /* format output string and save test results */
164 char *string; local
167 string = kzalloc(count + 1, GFP_KERNEL);
168 if (!string)
171 size = simple_write_to_buffer(string, count, ppos, buffer, count);
192 ret = kstrtoul(string, 0, &ipc_duration_ms);
194 ret = kstrtoul(string, 0, &ipc_count);
238 kfree(string);
/linux-master/security/apparmor/
H A Dpolicy_unpack_test.c232 const char *string = NULL; local
236 size = aa_unpack_str(puf->e, &string, NULL);
239 KUNIT_EXPECT_STREQ(test, string, TEST_STRING_DATA);
245 const char *string = NULL; local
248 size = aa_unpack_str(puf->e, &string, TEST_STRING_NAME);
251 KUNIT_EXPECT_STREQ(test, string, TEST_STRING_DATA);
257 const char *string = NULL; local
264 size = aa_unpack_str(puf->e, &string, TEST_STRING_NAME);
273 char *string = NULL; local
277 size = aa_unpack_strdup(puf->e, &string, NUL
289 char *string = NULL; local
305 char *string = NULL; local
[all...]
/linux-master/tools/perf/scripts/python/
H A Dgecko.py20 import string namespace
101 stringTable: interned string ID -> string.
102 stringMap: interned string -> string ID.
105 frameMap: Stack Frame string -> interned Frame ID.
140 def _intern_string(self, string: str) -> int:
141 """Gets a matching string, or saves the new string. Returns a String ID."""
142 string_id = self.stringMap.get(string)
[all...]
/linux-master/drivers/acpi/
H A Dosi.c26 char string[OSI_STRING_LENGTH_MAX]; member in struct:acpi_osi_entry
108 if (!strcmp(osi->string, str)) {
111 } else if (osi->string[0] == '\0') {
113 strscpy(osi->string, str, OSI_STRING_LENGTH_MAX);
146 * OSI(Linux) in their example code, quickly exposing this string as
160 * So "Linux" turned out to be a really poor chose of OSI string, and from
188 * empty string disables _OSI
189 * string starting with '!' disables that string
190 * otherwise string i
[all...]
/linux-master/scripts/gdb/linux/
H A Dinterrupts.py57 name = chip['name'].string()
72 text += "-%-8s" % (desc['name'].string())
79 text += " %s" % (action['name'].string())
85 text += ", %s" % (action['name'].string())
181 text += " %s" % (ipi_types[ipi].string())
/linux-master/drivers/hwmon/
H A Dhp-wmi-sensors.c205 * [read] string Name;
206 * [read] string Description;
212 * [read] string OtherSensorType;
223 * [read] string PossibleStates[];
224 * [read] string CurrentState;
253 * [read] string Name;
254 * [read] string Description;
256 * [read] string OtherSensorType;
258 * [read] string CurrentState;
259 * [read] string PossibleState
821 char *string; local
938 char *string; local
1011 char *string; local
1090 char *string; local
[all...]

Completed in 250 milliseconds

<<11121314151617181920>>