Searched refs:dictsearch (Results 1 - 8 of 8) sorted by relevance
/ast/src/cmd/mailx/ |
H A D | names.c | 175 if (np = dictsearch(&hp->h_names, buf, INSERT|IGNORECASE|STACK)) { 304 if (!dictsearch(&wm->prev, name, LOOKUP)) { 305 np = dictsearch(&wm->next, name, INSERT|IGNORECASE|STACK); 307 if (dictsearch(&wm->seen, name, CREATE|IGNORECASE|STACK)) { 338 dictsearch(&wm->seen, np->name, INSERT|IGNORECASE|STACK); 339 if (*np->name != '\\' && (ap = dictsearch(&state.aliases, np->name, LOOKUP))) { 354 if (!dictsearch(&state.aliases, np->name, LOOKUP)) 355 dictsearch(&wm->next, (char*)np, INSERT|IGNORECASE|STACK|OBJECT|COPY); 378 (np = dictsearch(&wm.prev, hp->h_first, LOOKUP)) && 382 dictsearch( [all...] |
H A D | cmd3.c | 708 if (!(ap = dictsearch(&state.aliases, name, LOOKUP|IGNORECASE))) 727 ap = dictsearch(&state.aliases, s, INSERT|IGNORECASE); 753 ap = dictsearch(&state.aliases, name, INSERT|IGNORECASE); 784 if (!(dictsearch(&state.aliases, s, DELETE)))
|
H A D | head.c | 275 if (streq(s, state.var.user) || (np = dictsearch(&state.aliases, s, LOOKUP)) && streq(np->name, state.var.user))
|
H A D | local.c | 177 up = dictsearch(&state.userid, name, INSERT);
|
H A D | misc.c | 595 tp = dictsearch(ignore, field, LOOKUP);
|
H A D | cmd2.c | 509 if (tp = dictsearch(ignore, *ap, INSERT|IGNORECASE))
|
H A D | mailx.h | 518 * dictsearch() flag values 925 extern struct name* dictsearch(Dt_t**, const char*, int);
|
H A D | vars.c | 773 dictsearch(Dt_t** dp, const char* name, register int op) function
|
Completed in 30 milliseconds