Lines Matching refs:string
35 * 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,
473 if (!string || !(*string)) {
479 while (*string && isspace((int)*string)) {
480 string++;
483 if (!(*string)) {
487 switch (*string) {
490 /* This is a quoted string, scan until closing quote */
492 string++;
493 start = string;
496 /* Find end of string */
498 while (*string && (*string != '"')) {
499 string++;
507 string++;
508 start = string;
513 while (*string && (*string != ')')) {
514 string++;
522 string++;
523 start = string;
528 while (*string && (*string != '}')) {
529 string++;
537 string++;
539 start = string;
544 while (*string) {
548 if (*string == '"') {
549 /* Find end of string */
551 string++;
552 while (*string && (*string != '"')) {
553 string++;
555 if (!(*string)) {
558 } else if (*string == '[') {
560 } else if (*string == ']') {
567 string++;
573 start = string;
577 while (*string && !isspace((int)*string)) {
578 string++;
583 if (!(*string)) {
586 *string = 0;
587 *next = string + 1;