Lines Matching refs:string
35 * This list of commands must match the string table below it
244 {1, " [0x01 0x1234 \"string\"]",
329 * PARAMETERS: command - Command string to match
384 * PARAMETERS: command - Command string to match
414 * PARAMETERS: command - Optional command string to display help.
452 * PARAMETERS: string - Command buffer
461 char *acpi_db_get_next_token(char *string,
470 if (!string || !(*string)) {
476 while (*string && isspace(*string)) {
477 string++;
480 if (!(*string)) {
484 switch (*string) {
487 /* This is a quoted string, scan until closing quote */
489 string++;
490 start = string;
493 /* Find end of string */
495 while (*string && (*string != '"')) {
496 string++;
504 string++;
505 start = string;
510 while (*string && (*string != ')')) {
511 string++;
519 string++;
520 start = string;
525 while (*string && (*string != '}')) {
526 string++;
534 string++;
536 start = string;
541 while (*string) {
545 if (*string == '"') {
546 /* Find end of string */
548 string++;
549 while (*string && (*string != '"')) {
550 string++;
552 if (!(*string)) {
555 } else if (*string == '[') {
557 } else if (*string == ']') {
564 string++;
570 start = string;
574 while (*string && !isspace(*string)) {
575 string++;
580 if (!(*string)) {
583 *string = 0;
584 *next = string + 1;