Searched defs:names (Results 1 - 11 of 11) sorted by relevance

/ast/src/lib/libdll/
H A Ddll_lib.c39 * split <name,base,type,opts> from name into names
43 dllnames(const char* id, const char* name, Dllnames_t* names) argument
54 if (!names)
56 s = fmtbuf(sizeof(Dllnames_t*) + sizeof(names) - 1);
57 if (n = (s - (char*)0) % sizeof(names))
58 s += sizeof(names) - n;
59 names = (Dllnames_t*)s;
72 b = names->base = names->data;
73 e = b + sizeof(names
110 dll_lib(Dllnames_t* names, unsigned long version, Dllerror_f dllerrorf, void* disc) argument
185 Dllnames_t names; local
[all...]
/ast/src/cmd/ksh93/bltins/
H A Dtrap.c356 * if <flag> is zero, then print all signal names
357 * if <flag> is -1, then print all signal names in menu format
366 const char *names[SH_TRAP]; local
373 names[sig] = 0;
389 else if(sig-- && sig < elementsof(names))
390 names[sig] = (char*)tp->sh_name;
405 if(sig > shp->gd->sigmax || !(sname=(char*)names[sig]))
418 /* print all the signal names */
421 if(!(sname=(char*)names[sig]))
428 names[si
[all...]
H A Dread.c198 * <names> is an array of variable names
204 int sh_readline(register Shell_t *shp,char **names, volatile int fd, int flags,ssize_t size,long timeout) argument
233 if(names && (name = *names))
267 name = *++names;
770 name = *++names;
783 name = *++names;
/ast/src/lib/libardir/
H A Dar-port.c60 char* names; /* long name table */ member in struct:State_s
96 if (state->names)
97 free(state->names);
181 if (!state->names && hdr->ar_name[1] == TERM_port && (hdr->ar_name[2] == ' ' || hdr->ar_name[2] == TERM_port && hdr->ar_name[3] == ' '))
187 if (!(state->names = newof(0, char, size, 0)) || read(ar->fd, state->names, size) != size)
191 for (e = (name = state->names) + size; name < e; name++)
279 if (state->names && (*ar->dirent.name == TERM_port || *ar->dirent.name == ' '))
280 ar->dirent.name = state->names + strtol(ar->dirent.name + 1, NiL, 10);
/ast/src/lib/libdss/
H A Ddssopen.c365 Dllnames_t names; local
385 if (!dllnames(id, name, &names))
387 if ((lib = (Dsslib_t*)dtmatch(state.cx->libraries, names.base)) ||
388 (lib = (Dsslib_t*)dll_lib(&names, DSS_PLUGIN_VERSION, (flags & DSS_VERBOSE) ? (Error_f)disc->errorf : (Error_f)0, disc)))
389 init(NiL, lib, names.path, flags|DSS_VERBOSE, disc);
/ast/src/lib/libtk/generic/
H A DtkSend.c35 /* Next in list of names associated
1141 * interpreter names currently registered for the display
1146 * to hold a list of all the interpreter names defined for
1261 * Get atoms used as property names.
1853 * This procedure updates the list of application names stored
1871 Tcl_DString names;
1874 Tcl_DStringInit(&names);
1876 Tcl_DStringAppendElement(&names, riPtr->name);
1880 (unsigned char *) Tcl_DStringValue(&names),
1881 Tcl_DStringLength(&names));
1854 Tcl_DString names; local
[all...]
/ast/src/cmd/ss/
H A Dssd.c207 static struct nlist names[elementsof(symbols) + 1]; variable in typeref:struct:nlist
395 names[n].n_name = symbols[n].name;
421 nlist(s, names);
423 if (!names[n].n_type)
425 error(1, "%s: %s not in nlist", s, names[n].n_name);
576 if (lseek(kf, (long)names[n].n_value, 0) != (long)names[n].n_value)
577 error(ERROR_SYSTEM|3, "%s: %s seek error", memfile, names[n].n_name);
579 error(ERROR_SYSTEM|3, "%s: %s read error", memfile, names[n].n_name);
/ast/src/cmd/ksh93/sh/
H A Dnvdisc.c651 int nv_adddisc(Namval_t *np, const char **names, Namval_t **funs) argument
655 register const char **av=names;
671 vp->bnames = names;
1358 * return space separated list of names of variables in given tree
H A Dnvtype.c38 "[+?If no \aname\as are specified then the names and values of all "
94 char **names; member in struct:Namtype
539 if((memcmp(name,dp->names[i],n)==0) && dp->names[i][n]==0)
679 help = &dp->names[dp->ndisc];
724 stakputs(dp->names[i]);
730 sfprintf(out,"\t[+%s?:static:%s]\n",dp->names[i],cp?cp:Empty);
732 sfprintf(out,"\t[+%s?%s]\n",dp->names[i],cp?cp:Empty);
951 pp->names = (char**)(nrp+iref);
952 help = &pp->names[n
[all...]
/ast/src/cmd/kshlib/dss/
H A Ddss.c81 char **names; member in struct:Namtype
88 char **names; member in struct:dsstype
140 int n = (char**)bp->ptr-dp->hdr.names;
149 if(!(qp = cxquery(cx, dp->hdr.names[n], cx->disc)))
1081 "[+?If no \aname\as are specified then the names and values of all "
1252 dp->hdr.names = ((struct dsstype*)fp)->names;
1253 nv_adddisc(mp,(const char**)dp->hdr.names,0);
1255 add_discipline(name,dp->hdr.names[i], query,&dp->hdr.names[
[all...]
/ast/src/lib/libast/regex/
H A Dreglib.h577 Dt_t* names; member in struct:State_s

Completed in 75 milliseconds