Searched refs:tokbuf (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libpp/common/
H A Dppdata.c66 static char tokbuf[2*MAXTOKEN+1]; /* token buffer */ variable
96 &tokbuf[0], /* token */
/illumos-gate/usr/src/uts/common/os/
H A Dmodsysfile.c1760 get_hwc_spec(struct _buf *file, char *tokbuf, size_t linesize) argument
1802 if (strcmp(tokbuf, "PARENT") == 0 ||
1803 strcmp(tokbuf, "parent") == 0) {
1805 } else if (strcmp(tokbuf, "NAME") == 0 ||
1806 strcmp(tokbuf, "name") == 0) {
1808 } else if (strcmp(tokbuf, "CLASS") == 0 ||
1809 strcmp(tokbuf, "class") == 0) {
1811 prop_name = kmem_alloc(strlen(tokbuf) +
1813 (void) strcpy(prop_name, tokbuf);
1816 prop_name = kmem_alloc(strlen(tokbuf)
2150 char tokbuf[MAXPATHLEN]; local
2268 char tokbuf[MAXNAMELEN]; local
2423 char tokbuf[MAXNAMELEN]; local
2809 char tokbuf[MAXNAMELEN]; local
2958 char tokbuf[MAXNAMELEN]; local
3038 char tokbuf[MAXNAMELEN]; local
[all...]
/illumos-gate/usr/src/lib/libdevinfo/
H A Ddevfsmap.c442 parse_conf_entry(struct conf_file *filep, char *tokbuf, size_t linesize) argument
468 if ((prop_name = strdup(tokbuf)) == NULL)
472 file_err(filep, tok_err, tokbuf);
481 file_err(filep, tok_err, tokbuf);
487 if ((string = strdup(tokbuf)) == NULL)
554 file_err(filep, tok_err, tokbuf);
568 (int)strtol(tokbuf, NULL, 0);
580 file_err(filep, tok_err, tokbuf);
592 file_err(filep, tok_err, tokbuf);
605 file_err(filep, tok_err, tokbuf);
[all...]
/illumos-gate/usr/src/cmd/fm/modules/sun4v/cpumem-diagnosis/
H A Dcmd_hc_sun4v.c126 char *token, *tokbuf; local
130 for (token = strtok_r(str, sep, &tokbuf);
132 token = strtok_r(NULL, sep, &tokbuf)) {
/illumos-gate/usr/src/uts/i86pc/os/
H A Dstartup.c2961 char tokbuf[MAXNAMELEN]; local
3021 token = kobj_lex(file, tokbuf, sizeof (tokbuf));
3035 for (c = (unsigned char *)tokbuf;
3047 if (kobj_getvalue(tokbuf, &tmp) != 0)
3050 tokbuf);
/illumos-gate/usr/src/cmd/loadkeys/
H A Dloadkeys.y771 char tokbuf[256+1];
832 cp = &tokbuf[0];
834 if (cp > &tokbuf[256])
846 if ((int) strlen(tokbuf) > KTAB_STRLEN)
848 strings[nstrings] = strdup(tokbuf);
880 cp = &tokbuf[0];
882 if (cp > &tokbuf[256])
890 if (strlen(tokbuf) == 1) {
892 yylval.number = (unsigned char)tokbuf[0];
893 } else if (strlen(tokbuf)
[all...]

Completed in 67 milliseconds