Searched refs:nlist (Results 1 - 25 of 79) sorted by relevance

1234

/illumos-gate/usr/src/head/
H A Dnlist.h36 struct nlist { struct
45 extern int nlist(const char *, struct nlist *);
/illumos-gate/usr/src/boot/include/
H A Dnlist.h34 * @(#)nlist.h 8.2 (Berkeley) 1/21/94
46 int nlist(const char *, struct nlist *);
H A Da.out.h43 #include <nlist.h>
/illumos-gate/usr/src/lib/libbc/libc/gen/sys5/
H A Dnlist.c33 * nlist - retreive attributes from name list (string table version)
37 nlist(char *name, struct nlist *list) function
/illumos-gate/usr/src/lib/libbc/libc/gen/4.2/
H A Dnlist.c33 * nlist - retreive attributes from name list (string table version)
37 nlist(char *name, struct nlist *list) function
/illumos-gate/usr/src/cmd/lp/lib/access/
H A Dloadaccess.c125 nlist; local
150 for (nlist = 0; fdgets(buf, BUFSIZ, fd); ) {
157 if (nlist >= nalloc) {
169 list[nlist] = Strdup(buf); /* if fail, minor problem */
170 list[++nlist] = 0;
187 if (nlist != nalloc) {
190 (nlist + 1) * sizeof(char *)
197 list[nlist] = 0;
/illumos-gate/usr/src/cmd/sgs/libelf/misc/
H A Dnlist.c37 #include <nlist.h>
43 /* which conflicts with the member nlist->n_name */
44 /* as defined in nlist.h */
61 _elf_nlist(int fd, struct nlist * list)
94 struct nlist *p;
123 NOTE(SCHEME_PROTECTS_DATA("user provides buffers", nlist))
126 nlist(const char * name, struct nlist * list) function
128 register struct nlist *p;
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Drtime_tli.c75 struct nd_addrlist *nlist = NULL; local
98 if (netdir_getbyname(nconf, &rpcbind_hs, &nlist))
107 tu_data.addr = *nlist->n_addrs;
134 sndcall.addr = *nlist->n_addrs;
159 if (nlist)
160 netdir_free((char *)nlist, ND_ADDRLIST);
/illumos-gate/usr/src/cmd/eqn/
H A Dpile.c22 int bi, hi, i, gap, h, b, nlist, nlist2, mid; local
30 nlist = p2 - p1;
31 nlist2 = (nlist+1)/2;
36 eht[yyval] = h + (nlist-1)*gap;
41 ebase[yyval] = (nlist%2) ? b + ebase[lp[mid]]
44 ebase[yyval] = (nlist%2) ? b + ebase[lp[mid]]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_nlist.c23 * Note: This is a modified form of the original nlist() function.
25 * and is intended to be called by nlist(3) and kvmnlist(3K).
30 _nlist(int fd, struct nlist *list)
32 struct nlist *p, *q;
41 struct nlist space[BSIZ/sizeof (struct nlist)];
68 for (q = space; (m -= sizeof (struct nlist)) >= 0; q++) {
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Ddockdeps.c66 static int nlist; variable
159 } while (++i < nlist);
259 if (nlist) {
264 for (i = 0; i < nlist; i++) {
316 for (i = 0; i < nlist; i++) {
329 nlist = 0;
370 nlist++;
431 } while (++i < nlist);
/illumos-gate/usr/src/lib/libcfgadm/common/
H A Dllib-lcfgadm77 int *nlist,
86 int *nlist,
/illumos-gate/usr/src/cmd/sgs/m4/common/
H A Dm4.h90 struct nlist { struct
94 struct nlist *next;
152 extern struct nlist **hshtab;
154 extern struct nlist *lookup();
H A Dm4ext.c96 struct nlist **hshtab; /* hash table */
/illumos-gate/usr/src/boot/sys/sys/
H A Dnlist_aout.h34 * @(#)nlist.h 8.2 (Berkeley) 1/21/94
48 * programs including nlist.h can initialize nlist structures
51 struct nlist { struct
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Dnlist.c46 #include <nlist.h>
81 static int _elf_nlist(int, struct nlist *);
86 static int _coff_nlist(int, struct nlist *);
93 nlist(const char *name, struct nlist *list) function
95 struct nlist *p;
141 _elf_nlist(int fd, struct nlist *list)
154 struct nlist *inl;
242 struct nlist *p;
356 _coff_nlist(int fd, struct nlist *lis
[all...]
/illumos-gate/usr/src/lib/libkvm/
H A Dkvm.h35 #include <nlist.h>
54 extern int kvm_nlist(kvm_t *, struct nlist []);
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dpaths.c1032 char *str, *olist = 0, *nlist = (char *)list; local
1036 for (str = nlist; *nlist || fnull; str = nlist) {
1042 if (*nlist == ';')
1043 ++nlist, ++str;
1044 if ((*nlist == ':') || fnull) {
1046 fnull = !(fnull || *(nlist + 1));
1048 if (*nlist)
1049 nlist
[all...]
H A Da.out.c295 aout_symconvert(struct nlist *sp)
323 static struct nlist *
324 aout_find_com(struct nlist *sp, const char *name)
349 if ((rs->rtc_sp = malloc(sizeof (struct nlist))) == NULL)
370 static struct nlist *
377 struct nlist *sp;
477 struct nlist *sp;
561 struct nlist *nl;
564 nl = (struct nlist *)&caddr[N_SYMOFF(*exec)];
583 LM2LP(lmp)->lp_symtab = (struct nlist *)(
[all...]
H A D_a.out.h75 struct nlist { struct
176 struct nlist *rtc_sp; /* symbol for common */
329 struct nlist *lp_symtab; /* symbol table */
332 struct nlist *(*lp_interp)(); /* link map interpreter */
/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dllib-lelf34 #include <nlist.h>
138 int nlist(const char *, struct nlist *);
/illumos-gate/usr/src/lib/libkvm/common/
H A Dllib-lkvm40 int kvm_nlist(kvm_t *, struct nlist []);
H A Dtest.c37 #include <nlist.h>
59 void tst_nlist(struct nlist nl[]);
72 struct nlist nl[] = {
87 struct nlist *nlp;
191 tst_nlist(struct nlist nl[])
/illumos-gate/usr/src/cmd/dcs/sparc/sun4u/
H A Drdr_param_types.h136 int *nlist; member in struct:__anon371
/illumos-gate/usr/src/cmd/fm/modules/common/disk-monitor/
H A Dhotplug_mgr.c82 cfga_list_data_t **list_array, int *nlist, int flag)
93 nlist, NULL, NULL, NULL, flag))) {
131 int nlist; local
159 if (config_list_ext_poll(1, ap_path, &list_array, &nlist, 0)
163 dm_assert(nlist == 1);
187 int rv, nlist; local
202 rv = config_list_ext_poll(1, ap_path, &list_array, &nlist,
217 rv = config_list_ext_poll(1, ap_path, &list_array, &nlist,
227 dm_assert(nlist == 1);
81 config_list_ext_poll(int num, char * const *path, cfga_list_data_t **list_array, int *nlist, int flag) argument

Completed in 101 milliseconds

1234