Searched defs:rest (Results 1 - 20 of 20) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/commands/i386/
H A Dcmostest.c30 char *rest; local
35 *byte = grub_strtoul (argv[0], &rest, 0);
36 if (*rest != ':')
39 *bit = grub_strtoul (rest + 1, 0, 0);
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dfsys_ffs.c185 char *rest, ch; local
228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
230 *rest = 0;
247 *rest = ch;
261 *rest = ch;
286 *(dirname = rest) = ch;
H A Dfsys_ufs2.c209 char *rest, ch; local
253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
255 *rest = 0;
268 *rest = ch;
282 *rest = ch;
307 *(dirname = rest) = ch;
H A Dfsys_fat.c295 char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH]; local
344 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
346 *rest = 0;
371 *rest = ch;
477 *(dirname = rest) = ch;
H A Dfsys_jfs.c275 char *ptr, *rest, ch; local
332 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
333 *rest = 0;
370 *(dirname = rest) = ch;
379 *rest = ch;
H A Dfsys_minix.c311 char * rest; local
442 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
443 rest++);
446 /* invariant: rest points to slash after the next filename component */
447 *rest = 0;
453 printf ("dirname=`%s', rest=`%s', loc=%d\n", dirname, rest, loc);
469 *rest = ch;
488 *rest
[all...]
H A Dfsys_xfs.c544 char *rest, *name, ch; local
591 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
592 *rest = 0;
608 *(dirname = rest) = ch;
617 *rest = ch;
H A Dfsys_ext2fs.c561 char *rest; local
745 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
746 rest++);
749 /* invariant: rest points to slash after the next filename component */
750 *rest = 0;
757 printf ("dirname=%s, rest=%s, loc=%d\n", dirname, rest, loc);
773 *rest = ch;
792 *rest
[all...]
H A Dfsys_reiserfs.c467 * we can still read the rest from the disk on demand.
998 char *rest, ch; local
1123 for (rest = dirname; (ch = *rest) && ! isspace (ch) && ch != '/'; rest++);
1124 *rest = 0;
1200 *rest = ch;
1205 *rest = ch;
1206 dirname = rest;
/osnet-11/usr/src/lib/libnisdb/
H A Ddb_index_entry.cc53 entryp ep, db_index_entry_p rest)
60 next = rest;
52 db_index_entry(unsigned long hval, item* k, entryp ep, db_index_entry_p rest) argument
/osnet-11/usr/src/lib/libdscfg/common/
H A Dcfg_local.c67 char *rest; local
75 rest = strstr(name, "/dsk/");
76 if (rest == NULL) {
77 if ((rest = strstr(name, "/rdsk/")) == NULL)
84 char_name[strlen(name) - strlen(rest)] = 0;
86 strcat(char_name, rest + 5);
542 * enough for the new string, or bcopying the rest of the list
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_confmgr.c290 char *attr, *attrName, *attrVal, *rest; local
303 attr = strtok_r(config, DOORLINESEP, &rest);
353 } while (attr = strtok_r(NULL, DOORLINESEP, &rest));
H A Dns_config.c1523 char *rest; local
1592 strptr = strtok_r(buffer, ",", &rest);
1605 strptr = strtok_r(NULL, ",", &rest);
3393 char *rest; local
3406 strptr = (char *)strtok_r(bufptr, DOORLINESEP, &rest);
3435 strptr = (char *)strtok_r(NULL, DOORLINESEP, &rest);
3454 char *rest; local
3476 strptr = (char *)strtok_r(bufptr, DOORLINESEP, &rest);
3514 strptr = (char *)strtok_r(NULL, DOORLINESEP, &rest);
H A Dns_connect.c196 char *rbuf, *ptr, *rest; local
337 ptr = strtok_r(rbuf, DOORLINESEP, &rest);
350 ptr = strtok_r(NULL, DOORLINESEP, &rest);
364 ptr = strtok_r(NULL, DOORLINESEP, &rest);
388 ptr = strtok_r(NULL, DOORLINESEP, &rest);
593 * as long as it matches the rest of the parameters.
H A Dns_standalone.c846 char *attrs[2], *DNlist, *rest, *ptr; local
895 (ptr = strtok_r(DNlist, DOORLINESEP, &rest)) == NULL) {
954 } while (ptr = strtok_r(NULL, DOORLINESEP, &rest));
1308 char *rs, *attr, *val, *rest; local
1316 for (attr = strtok_r(rs, DOORLINESEP, &rest);
1318 attr = strtok_r(NULL, DOORLINESEP, &rest)) {
1612 char *rootDSE = NULL, *attr, *val, *rest, **ptr; local
1654 attr = strtok_r(rootDSE, DOORLINESEP, &rest);
1746 } while (attr = strtok_r(NULL, DOORLINESEP, &rest));
/osnet-11/usr/src/grub/grub2/grub-core/fs/
H A Dcpio.c413 char *rest; local
424 rest = *name + flen;
425 lastslash = rest;
426 if (*rest)
427 rest++;
461 ptr = grub_stpcpy (ptr, rest);
476 ptr = grub_stpcpy (ptr, rest);
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Dctl_srvr.c681 char *name, *rest, tmp[MAX_NTOP]; local
691 rest = name + strcspn(name, space);
692 if (*rest != '\0') {
693 *rest++ = '\0';
694 rest += strspn(rest, space);
703 (*verb->func)(ctx, sess, verb, rest, 0, NULL, ctx->uctx);
708 strlen(name) + strlen(rest) > sizeof buf)
713 name, rest);
/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A Dlegacy_parse.c192 "Attempt to load the primary boot image from FILE. The rest of the"
206 "Attempt to load the primary boot image from FILE. The rest of the"
234 " rest of the line is passed as the \"module command line\", like"
245 " rest of the line is passed as the \"module command line\", like"
374 " rest of the line, starting with the first non-space character."},
494 const char *comma, *ptr, *rest; local
531 part = grub_strtoull (comma + 1, (char **) &rest, 0);
532 if (rest[0] == ',' && rest[1] >= 'a' && rest[
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dnet.c378 parse_ip (const char *val, grub_uint32_t *ip, const char **rest) argument
407 if (rest)
408 *rest = (ptr - 1);
413 parse_ip6 (const char *val, grub_uint64_t *ip, const char **rest) argument
456 if (rest)
457 *rest = ptr;
505 const char *rest; local
510 if (parse_ip (name, &addr->ipv4, &rest) && *rest == 0)
515 if (parse_ip6 (name, addr->ipv6, &rest)
536 const char *rest; local
[all...]
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_dataset.c3530 char *rest = NULL; local
3556 rest = propsmb;
3557 if (strncmp(rest, "on", strlen("on")) == 0) {
3558 rest += strlen("on");
3559 if (*rest == ',')
3560 ++rest;
3562 if (strncmp(rest, "name=", strlen("name=")) == 0) {
3563 name = rest + strlen("name=");
3564 } else if ((name = strstr(rest, ",name=")) != NULL) {
3565 start = rest;
[all...]

Completed in 83 milliseconds