Home
last modified time | relevance | path

Searched refs:look (Results 1 – 25 of 114) sorted by relevance

12345

/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/
H A Dastconf.c865 lookup(register Lookup_t* look, const char* name, unsigned int flags) in lookup() argument
877 look->flags = 0; in lookup()
878 look->call = -1; in lookup()
879 look->standard = (flags & ASTCONF_AST) ? CONF_AST : -1; in lookup()
880 look->section = -1; in lookup()
889 if (look->standard >= 0) in lookup()
891 look->standard = p->standard; in lookup()
895 if (look->call >= 0) in lookup()
897 look->call = p->call; in lookup()
901 look->conf = # in lookup()
[all …]
/illumos-gate/usr/src/lib/libnsl/key/
H A Dpublickey.c556 struct __nsw_lookup *look; in __getpublickey_cached_g() local
569 for (look = conf->lookups; look; look = look->next) { in __getpublickey_cached_g()
570 if (strcmp(look->service_name, "ldap") == 0) { in __getpublickey_cached_g()
576 strcmp(look->service_name, "nis") == 0) in __getpublickey_cached_g()
580 strcmp(look->service_name, "files") == 0) in __getpublickey_cached_g()
585 look->service_name); in __getpublickey_cached_g()
590 switch (look->actions[err]) { in __getpublickey_cached_g()
599 look->service_name); in __getpublickey_cached_g()
639 struct __nsw_lookup *look; in getsecretkey_g() local
653 for (look = conf->lookups; look; look = look->next) { in getsecretkey_g()
[all …]
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dnetname.c180 struct __nsw_lookup *look; in user2netname() local
215 for (look = conf->lookups; look; look = look->next) { in user2netname()
217 if (strcmp(look->service_name, "ldap") == 0 || in user2netname()
218 strcmp(look->service_name, "nis") == 0 || in user2netname()
219 strcmp(look->service_name, "files") == 0) in user2netname()
226 look->service_name); in user2netname()
229 switch (look->actions[err]) { in user2netname()
240 look->service_name); in user2netname()
H A Dnetnamer.c379 struct __nsw_lookup *look; in netname2user() local
423 for (look = conf->lookups; look; look = look->next) { in netname2user()
424 if (strcmp(look->service_name, "nis") == 0) in netname2user()
426 else if (strcmp(look->service_name, "files") == 0) in netname2user()
428 else if (strcmp(look->service_name, "ldap") == 0) in netname2user()
433 "info '%s'\n", look->service_name); in netname2user()
437 switch (look->actions[err]) { in netname2user()
448 "nameservice '%s'", look->service_name); in netname2user()
/illumos-gate/usr/src/lib/libadm/common/
H A Dgetvol.c182 char *pt, *look, buffer[512]; in ckilabel() local
208 look = "Current fsname: "; in ckilabel()
209 n = (int)strlen(look); in ckilabel()
211 if (strncmp(pt, look, n) == 0) { in ckilabel()
213 pt += strlen(look); in ckilabel()
216 look = ", Current volname: "; in ckilabel()
217 n = (int)strlen(look); in ckilabel()
220 look = ", Blocks: "; in ckilabel()
221 n = (int)strlen(look); in ckilabel()
/illumos-gate/usr/src/cmd/svr4pkg/pkgserv/
H A Dpkgserv.c844 pkgentry_t *ent, *look; in parse_log() local
920 look = avl_find(list, ent, &where); in parse_log()
928 if (look != NULL) in parse_log()
929 swapentry(look, ent); in parse_log()
934 if (look != NULL) { in parse_log()
935 avl_remove(list, look); in parse_log()
936 freeentry(look); in parse_log()
956 pkgentry_t *look; in file_find() local
961 look = avl_find(list, &p, NULL); in file_find()
963 if (look == NULL) in file_find()
[all …]
/illumos-gate/usr/src/cmd/tsol/plabel/
H A Dplabel.c51 static int look(char *);
113 rc = look(pid); in main()
116 err = look(*argv++); in main()
125 look(char *arg) in look() function
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Dy1.c755 ss = k->look; in state()
756 k->look = l->look; in state()
757 l->look = ss; in state()
786 clset.lset[s] = l->look->lset[s]; in state()
787 if (setunion(clset.lset, k->look->lset)) { in state()
790 l->look = flset(&clset); in state()
832 j->look = flset(lptr); in putitem()
1027 wsets[cwp].ws.lset[k] = p->look->lset[k]; in closure()
1205 if (psmem[i].look) in exp_lkst()
1206 psmem[i].look = psmem[i].look - lookbase + lkst; in exp_lkst()
[all …]
/illumos-gate/usr/src/cmd/projadd/
H A Dprojmod.pl91 my %look = map { $_ => 1 } @$old;
94 if (! exists($look{$e})) {
119 my %look = map { $_ => 0 } @$new;
121 if (exists($look{$e})) {
122 $look{$e}++;
127 my @leftover = grep(! $look{$_}, keys(%look));
/illumos-gate/usr/src/cmd/ptools/ptime/
H A Dptime.c45 static int look(pid_t);
80 (void) look(pid); in ptime_pid()
170 (void) look(pid); in main()
190 look(pid_t pid) in look() function
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A Delfedit.c2275 char *look; in gettok() local
2306 gettok_state->gtok_last_token.tok_str = look = str; in gettok()
2308 look - gettok_state->gtok_buf; in gettok()
2309 for (; *look; look++) { in gettok()
2310 if (*look == quote_ch) { /* Terminates active quote */ in gettok()
2316 if ((*look == '\'') || (*look == '"')) { in gettok()
2317 quote_ch = *look; /* New active quote */ in gettok()
2320 if (isspace(*look)) in gettok()
2338 if (*look == '\\') { in gettok()
2340 *str++ = *look; in gettok()
[all …]
/illumos-gate/usr/src/cmd/ptools/pcred/
H A Dpcred.c41 static int look(char *);
133 rc += look(*argv++); in main()
154 look(char *arg) in look() function
/illumos-gate/usr/src/cmd/keyserv/
H A Dchkey_common.c212 struct __nsw_lookup *look; in switch_policy_str() local
218 for (look = conf->lookups; look; look = look->next) { in switch_policy_str()
221 strcat(policy, look->service_name); in switch_policy_str()
/illumos-gate/usr/src/cmd/smbsrv/test-crypt/
H A DREADME30 look with gdb) it's easiest to run with a customized pkcs11.conf
32 Your custom pkcs11.conf file should look like this:
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dnextafterl.S129 andl $0x80000000,%eax / look at explicit leading bit
145 cmpl $0x7fffffff,%eax / look at high x
H A Dnexttowardl.S129 andl $0x80000000,%eax / look at explicit leading bit
145 cmpl $0x7fffffff,%eax / look at high x
H A Droundl.S80 andw $0x8000,%ax / look at sign bit
H A Dlroundl.S84 andw $0x8000,%ax / look at sign bit
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dclusters.c780 int32_t look = startAt; in findAFreeCluster() local
783 if (freeInFAT(look)) { in findAFreeCluster()
786 if (look == LastCluster) in findAFreeCluster()
787 look = FIRST_CLUSTER; in findAFreeCluster()
789 look++; in findAFreeCluster()
790 if (look == startAt) in findAFreeCluster()
793 if (look != startAt) in findAFreeCluster()
794 return (look); in findAFreeCluster()
/illumos-gate/usr/src/cmd/ptools/psig/
H A Dpsig.c45 static int look(char *);
95 rc += look(argv[optind]); in main()
171 look(char *arg) in look() function
/illumos-gate/usr/src/cmd/look/
H A DMakefile27 PROG= look
/illumos-gate/usr/src/cmd/ptools/pflags/
H A Dpflags.c50 static int look(char *);
120 rc += look(*argv++); in main()
126 look(char *arg) in look() function
/illumos-gate/usr/src/cmd/ptools/ppriv/
H A Dppriv.c48 static int look(char *);
157 rc += look(*argv++); in main()
164 look(char *arg) in look() function
/illumos-gate/usr/src/cmd/sendmail/cf/feature/
H A Dcompat_check.m421 # look up the pair of addresses
/illumos-gate/usr/src/lib/libc/port/regex/
H A Dengine.c917 sopno look; in step() local
992 for (look = 1; in step()
993 OP(s = g->strip[pc+look]) != (sop)O_CH; in step()
994 look += OPND(s)) in step()
996 FWD(aft, aft, look + 1); in step()

12345