Searched refs:string (Results 26 - 50 of 3814) sorted by relevance

1234567891011>>

/linux-master/tools/perf/arch/arm64/util/
H A Dmachine.c5 #include <string.h>
/linux-master/tools/perf/util/
H A Dsample-raw.c3 #include <string.h>
4 #include <linux/string.h>
/linux-master/drivers/acpi/acpica/
H A Dtbprint.c19 static void acpi_tb_fix_string(char *string, acpi_size length);
29 * PARAMETERS: string - String to be repaired
34 * DESCRIPTION: Replace every non-printable or non-ascii byte in the string
39 static void acpi_tb_fix_string(char *string, acpi_size length) argument
42 while (length && *string) {
43 if (!isprint((int)(u8)*string)) {
44 *string = '?';
47 string++;
61 * DESCRIPTION: Copy the table header and ensure that all "string" fields in
H A Ddbinput.c35 * This list of commands must match the string table below it
246 {1, " [0x01 0x1234 \"string\"]",
332 * PARAMETERS: command - Command string to match
387 * PARAMETERS: command - Command string to match
417 * PARAMETERS: command - Optional command string to display help.
455 * PARAMETERS: string - Command buffer
464 char *acpi_db_get_next_token(char *string, argument
473 if (!string || !(*string)) {
479 while (*string
[all...]
H A Dutstring.c19 * PARAMETERS: string - Null terminated ASCII string
25 * DESCRIPTION: Dump an ASCII string with support for ACPI-defined escape
29 void acpi_ut_print_string(char *string, u16 max_length) argument
33 if (!string) {
39 for (i = 0; (i < max_length) && string[i]; i++) {
43 switch (string[i]) {
83 acpi_os_printf("\\%c", (int)string[i]);
90 if (isprint((int)string[i])) {
93 acpi_os_printf("%c", (int)string[
[all...]
H A Ddbconvert.c90 * PARAMETERS: string - Input string to be converted
95 * DESCRIPTION: Convert a string to a buffer object. String is treated a list
101 acpi_db_convert_to_buffer(char *string, union acpi_object *object) argument
111 acpi_ut_remove_whitespace(&string);
115 for (i = 0, length = 0; string[i];) {
119 while (string[i] && ((string[i] == ',') || (string[i] == ' '))) {
131 for (i = 0, j = 0; string[
165 acpi_db_convert_to_package(char *string, union acpi_object *object) argument
222 acpi_db_convert_to_object(acpi_object_type type, char *string, union acpi_object *object) argument
[all...]
/linux-master/arch/arm/mm/
H A Dproc-arm7tdmi.S62 string cpu_arch_name, "armv4t"
63 string cpu_elf_name, "v4"
64 string cpu_arm7tdmi_name, "ARM7TDMI"
65 string cpu_triscenda7_name, "Triscend-A7x"
66 string cpu_at91_name, "Atmel-AT91M40xxx"
67 string cpu_s3c3410_name, "Samsung-S3C3410"
68 string cpu_s3c44b0x_name, "Samsung-S3C44B0x"
69 string cpu_s3c4510b_name, "Samsung-S3C4510B"
70 string cpu_s3c4530_name, "Samsung-S3C4530"
71 string cpu_netarm_nam
[all...]
/linux-master/drivers/acpi/x86/
H A Dapple.c79 newsize += key->string.length + 1;
83 newsize += val->string.length + 1;
117 newprops[k].string.length = key->string.length;
118 newprops[k].string.pointer = free_space;
119 memcpy(free_space, key->string.pointer, key->string.length);
120 free_space += key->string.length + 1;
126 newprops[v].string.length = val->string
[all...]
/linux-master/drivers/pci/hotplug/
H A Dacpi_pcihp.c41 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL }; local
43 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
50 __func__, (char *)string.pointer, status);
53 __func__, (char *)string.pointer);
56 (char *)string.pointer);
58 kfree(string.pointer);
74 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL }; local
120 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
122 (char *)string.pointer);
135 kfree(string
[all...]
/linux-master/security/apparmor/
H A Dprocattr.c22 * @string: Returns - string containing the label info (NOT NULL)
25 * Requires: label != NULL && string != NULL
27 * Creates a string containing the label information for @label.
29 * Returns: size of string placed in @string else error code on failure
31 int aa_getprocattr(struct aa_label *label, char **string, bool newline) argument
47 *string = kmalloc(len + 2, GFP_KERNEL);
48 if (!*string) {
53 len = aa_label_snxprint(*string, le
[all...]
/linux-master/arch/um/drivers/
H A Dstderr_console.c19 static void stderr_console_write(struct console *console, const char *string, argument
22 generic_write(2 /* stderr */, string, len, NULL);
/linux-master/include/linux/
H A Dasn1_encoder.h20 u32 tag, const unsigned char *string, int len);
24 const unsigned char *string, u32 len);
/linux-master/arch/alpha/include/asm/
H A Dasm-prototypes.h6 #include <asm/string.h>
/linux-master/arch/riscv/purgatory/
H A Dpurgatory.c13 #include <linux/string.h>
14 #include <asm/string.h>
/linux-master/tools/perf/arch/arm/util/
H A Dpmu.c7 #include <string.h>
10 #include <linux/string.h>
/linux-master/security/smack/
H A Dsmack_access.c281 * readable string
282 * @string : the string to fill
286 static inline void smack_str_from_perm(char *string, int access) argument
291 string[i++] = 'r';
293 string[i++] = 'w';
295 string[i++] = 'x';
297 string[i++] = 'a';
299 string[i++] = 't';
301 string[
421 smk_find_entry(const char *string) argument
444 smk_parse_smack(const char *string, int len) argument
557 smk_import_entry(const char *string, int len) argument
[all...]
/linux-master/arch/alpha/lib/
H A Dsrm_puts.c6 #include <linux/string.h>
/linux-master/arch/x86/lib/
H A Dstrstr_32.c2 #include <linux/string.h>
21 "je 2f\n\t" /* also works for empty string, see above */
/linux-master/arch/s390/include/asm/
H A Dschid.h5 #include <linux/string.h>
/linux-master/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_macro_gram.y52 #include <string.h>
64 void mmerror(const char *string);
158 mmerror(const char *string)
160 stop(string, EX_DATAERR);
/linux-master/kernel/trace/
H A Dpower-traces.c8 #include <linux/string.h>
H A Drpm-traces.c8 #include <linux/string.h>
/linux-master/tools/perf/
H A Dperf-read-vdso.c3 #include <string.h>
/linux-master/arch/mips/fw/arc/
H A Denv.c12 #include <linux/string.h>
/linux-master/drivers/staging/media/atomisp/pci/hive_isp_css_include/
H A Dplatform_support.h26 #include <linux/string.h>

Completed in 217 milliseconds

1234567891011>>