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

<<11121314151617181920>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/dispatcher/
H A Ddsobject.c303 * individual bytes or a string initializer.
341 obj_desc->string.pointer = op->value.string;
342 obj_desc->string.length = STRLEN (op->value.string);
345 * The string is contained in the ACPI table, don't ever try
442 op->value.string, ACPI_TYPE_ANY,
451 acpi_ns_externalize_name (ACPI_UINT32_MAX, op->value.string, &length, &name);
461 op->value.string, op->aml_offset));
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/ospm/busmgr/
H A Dbmutils.c251 size_required += sizeof(char*) + (element->string.length * sizeof(char)) + sizeof(char);
259 ACPI_DEBUG_PRINT((ACPI_DB_WARN, "Invalid package element [%d] got string/buffer, expecing [%c].\n", i, format_string[i]));
310 /* NULL terminate string */
326 memcpy(tail, element->string.pointer, element->string.length);
328 tail += element->string.length * sizeof(char);
329 /* NULL terminate string */
576 * Resolve reference string (e.g. "\_PR_.CPU_") to an
580 element->string.pointer, &reference_handle);
583 ACPI_DEBUG_PRINT((ACPI_DB_WARN, "Unable to resolve device reference [%s].\n", element->string
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Dscsi_ioctl.c20 #include <linux/string.h>
40 * string at *arg, if arg is non null, filling to the length stored at
47 const char *string; local
55 string = host->hostt->info(host);
57 string = host->hostt->name;
58 if (string) {
59 slen = strlen(string);
62 if (copy_to_user(buffer, string, len))
75 * input data, if any, not including the command string & counts,
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/irda/
H A Dirias_object.c25 #include <linux/string.h>
51 /* Check string */
59 /* Allocate new string */
372 * Function irias_object_add_string_attrib (obj, string)
374 * Add a string attribute to an LM-IAS object
429 * Function irias_new_string_value (string)
431 * Create new IAS string value
435 struct ias_value *irias_new_string_value(char *string) argument
448 value->t.string = strndup(string, IAS_MAX_STRIN
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Dlash.c42 #include <string.h>
413 char string[MAX_READ]; local
417 strcpy(string, child->argv[1]);
418 len = strlen(string);
419 string[len++] = '=';
420 string[len] = '\0';
421 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
422 newlen = strlen(string);
743 strsep_space( char *string, int * ix) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/namespace/
H A Dnsdump.c272 obj_desc->string.length));
274 if (obj_desc->string.length > 0) {
276 obj_desc->string.pointer));
382 obj_desc->string.pointer,
383 obj_desc->string.length));
462 obj_desc = (acpi_operand_object *) obj_desc->string.pointer;
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dzconf.l12 #include <string.h>
112 "string" BEGIN(PARAM); return T_STRING;
115 zconflval.string = text;
141 zconflval.string = text;
153 zconflval.string = text;
161 zconflval.string = text;
170 zconflval.string = text;
248 zconflval.string = text;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_macro_scan.l51 #include <string.h>
/asus-wl-520gu-7.0.1.45/src/router/jpeg-6b/
H A Djerror.c37 * Create the message string table.
48 #define JMESSAGE(code,string) string ,
150 * Format a message string for the most recent JPEG error or message.
152 * characters. Note that no '\n' character is added to the string.
166 /* Look up message string in proper table */
181 /* Check for string parameter, as indicated by %s in the message text */
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/lxdialog/
H A Ddialog.h27 #include <string.h>
152 int first_alpha (const char *string, const char *exempt);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/e2fsck/
H A Dscantest.c5 #include <string.h>
27 #include <string.h>
H A Dutil.c14 #include <string.h>
127 int ask_yn(const char * string, int def) argument
151 printf("%s%s? ", string, defstr);
189 int ask (e2fsck_t ctx, const char * string, int def) argument
192 printf (_("%s? no\n\n"), string);
196 printf (_("%s? yes\n\n"), string);
200 printf ("%s? %s\n\n", string, def ? _("yes") : _("no"));
203 return ask_yn(string, def);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/ss/
H A Dexecute_cmd.c61 * If the command string in argv[0] is in the request table, execute
70 * argument string array
92 char *string = argv[0]; local
100 if (!strcmp(*name, string)) {
/asus-wl-520gu-7.0.1.45/src/router/fdisk/
H A Dfdisksgilabel.d17 /usr/include/alloca.h /usr/include/string.h /usr/include/bits/string.h \
93 /usr/include/string.h:
95 /usr/include/bits/string.h:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390/kernel/
H A Ddebug.c49 char *string; member in struct:__anon603
838 * counts arguments in format string for sprintf view
841 extern inline int debug_count_numargs(char *string) argument
845 while(*string) {
846 if(*string++=='%')
857 int level,char *string,...)
867 numargs=debug_count_numargs(string);
872 va_start(ap,string);
873 curr_event->string=string;
856 debug_sprintf_event(debug_info_t* id, int level,char *string,...) argument
887 debug_sprintf_exception(debug_info_t* id, int level,char *string,...) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390x/kernel/
H A Ddebug.c49 char *string; member in struct:__anon612
838 * counts arguments in format string for sprintf view
841 extern inline int debug_count_numargs(char *string) argument
845 while(*string) {
846 if(*string++=='%')
857 int level,char *string,...)
867 numargs=debug_count_numargs(string);
872 va_start(ap,string);
873 curr_event->string=string;
856 debug_sprintf_event(debug_info_t* id, int level,char *string,...) argument
887 debug_sprintf_exception(debug_info_t* id, int level,char *string,...) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/hp-lj/
H A Dutils.c9 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/ite-boards/generic/
H A Dpmon_prom.c41 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/ite-boards/ivr/
H A Dinit.c36 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/ite-boards/qed-4n-s01b/
H A Dinit.c36 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/kernel/
H A Dpci-dma.c14 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/lasat/
H A Dprom.c6 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/sibyte/sb1250/
H A Dsetup.c21 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips64/kernel/
H A Dpci-dma.c14 #include <linux/string.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/kernel/
H A Dpdc_cons.c21 #include <linux/string.h>

Completed in 377 milliseconds

<<11121314151617181920>>