Searched refs:names (Results 1 - 25 of 25) 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/lib/libtksh/lib/tksh7.6/
H A Dparray.tcl19 foreach name [lsort [array names array $pattern]] {
25 foreach name [lsort [array names array $pattern]] {
H A Dinit.tcl375 # names of files within dir. If no additional
439 # a glob pattern that matches the names of one or
510 foreach i [package names] {
523 [lsort [$c eval array names cmds]]]
527 foreach pkg [lsort [array names files]] {
/ast/src/lib/libtk/library/
H A Dcomdlg.tcl66 foreach cmdsw [array names cmd] {
85 set len [llength [array names cmd]]
89 foreach cmdsw [lsort [array names cmd]] {
192 foreach name [array names tkFocusIn $t,*] {
195 foreach name [array names tkFocusOut $t,*] {
H A Dpalette.tcl23 # option names and values. The name for an option is the one used
128 foreach dbOption [array names c] {
/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/cmd/ksh93/features/
H A Dmath.sh55 names=
59 [fix]) names="$names $name"
73 *) names="$names $1"
103 for name in $names
141 for name in $names
/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/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/mailx/
H A DMakefile9 names.c proc.c quit.c send.c spam.c tty.c vars.c \
/ast/src/lib/libtk/library/demos/
H A Dtcolor79 # Create the listbox that holds all of the color names in rgb.txt,
93 listbox .names -width 20 -height 12 -yscrollcommand ".scroll set" \
95 bind .names <Double-1> {
96 tc_loadNamedColor [.names get [.names curselection]]
98 scrollbar .scroll -orient vertical -command ".names yview" \
100 pack .names -in .middle.left -side left
104 .names insert end [lindex $line 3]
H A Drolodex24 set names {{} Name: Address: {} {} {Home Phone:} {Work Phone:} Fax:}
29 label .frame.$i.label -text [lindex $names $i] -anchor e
78 global names
80 puts stderr [format "%-12s %s" [lindex $names $i] [.frame.$i.entry get]]
H A Dwidget102 set tags [.t tag names {@%x,%y}]
238 # args - Any number of names of variables.
274 set tags [.t tag names $index]
297 set tags [.t tag names $index]
H A Dstyle.tcl65 $w.text insert end {. Tags are just textual names that you can apply to one
/ast/src/cmd/ksh93/sh/
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...]
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
/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/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/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/cmd/pax/
H A Dtar.sh51 directory names\) that specify which files are to be archived or
/ast/src/lib/libast/regex/
H A Dreglib.h577 Dt_t* names; member in struct:State_s
/ast/src/cmd/coshell/
H A Dcommand.c317 l host list matching host names\n\
/ast/src/lib/libast/comp/
H A Dconf.sh176 # set up the names and keys
354 1) echo "$command: check ${CONF_getconf:+$CONF_getconf(1),}confstr(2),pathconf(2),sysconf(2),sysinfo(2) configuration names" >&2 ;;
/ast/src/cmd/nmake/
H A DMakerules.mk11 * internal make rule names match the RE \.[.A-Z][.A-Z0-9]*
12 * internal make variable names match the RE \.[.A-Z][.A-Z0-9]*\.
13 * internal make operator names match the RE :[A-Z]*:
14 * use $(tmp) (10 chars max) to generate shell tmp file names
2813 * rhs are package names used in compilation
3207 /* please convert me to long op names */

Completed in 54 milliseconds