Searched defs:ignore (Results 1 - 25 of 27) sorted by relevance

12

/ast/src/lib/libpz/
H A Dpzlib.c31 pzlib(register Pz_t* pz, register const char* name, int ignore) argument
60 if (ignore)
/ast/src/lib/libcmd/
H A Dchmod.c72 "\b--ignore-umask\b option is specified.]"
112 "[i:ignore-umask?Ignore the \bumask\b(2) value in symbolic mode "
172 int ignore = 0; local
199 ignore = 1;
247 if (ignore)
248 ignore = umask(0);
257 if (ignore)
258 umask(ignore);
264 if (ignore)
265 umask(ignore);
[all...]
/ast/src/lib/libcs/
H A Dcsrecv.c93 Csid_t ignore; local
137 if (!id) id = &ignore;
/ast/src/cmd/std/
H A Diconv.c53 "[e:errors?Do not ignore conversion errors.]"
55 "[i:ignore?Ignore conversion errors.]"
142 int ignore; local
151 all = ignore = list = 0;
179 ignore = 0;
185 ignore = 1;
241 if (ignore || !id.errors)
H A Dps.c1316 addkey(const char* k, int ignore) argument
1386 if (!ignore)
1393 * we ignore keys already specified to let
H A Dls.c56 "[B:ignore-backups?Do not list entries ending with ~.]"
129 "[I:ignore?Do not list implied entries matching shell \apattern\a.]:[pattern]"
254 #define VISIBLE(f) ((f)->level<=0||(!state.ignore||!strmatch((f)->name,state.ignore))&&(!(state.lsflags&LS_NOBACKUP)||(f)->name[(f)->namelen-1]!='~')&&((state.lsflags&LS_ALL)||(f)->name[0]!='.'||(state.lsflags&LS_MOST)&&((f)->name[1]&&(f)->name[1]!='.'||(f)->name[2])))
349 char* ignore; /* ignore files matching this */ member in struct:__anon232
1576 state.ignore = opt_info.arg;
/ast/src/cmd/ksh93/tests/
H A Dfunctions.sh408 function ignore function
414 ignore
/ast/src/cmd/mailx/
H A Dcollect.c97 if (state.var.ignore) {
257 Dt_t** ignore; local
278 ignore = isupper(f) ? (Dt_t**)0 : &state.ignore;
288 if (copy(mp, fp, ignore, prefix, flags) < 0) {
H A Dsend.c181 * If ignore is given, suppress ignored header fields.
185 copy(register struct msg* mp, FILE* op, Dt_t** ignore, char* prefix, unsigned long flags) argument
199 return imap_copy(mp, op, ignore, prefix, flags);
246 if (!ignore || !ignored(ignore, "status"))
248 if (headset(&pp, mp, NiL, NiL, ignore, flags)) {
H A Dcmd2.c235 save1(char* str, Dt_t** ignore, unsigned long flags) argument
301 if (copy(mp, fp, ignore, NiL, 0) < 0) {
332 if (copy(mp, fp, ignore, NiL, 0) < 0)
498 * Low level for ignore and retain.
502 ignore1(Dt_t** ignore, char** list, unsigned long flags) argument
509 if (tp = dictsearch(ignore, *ap, INSERT|IGNORECASE))
511 if (*ignore)
512 dictflags(ignore) |= flags;
515 dictwalk(ignore, ignoreshow, &flags);
530 return ignore1(&state.ignore, lis
545 ignore(char** list) function
813 split1(char* str, Dt_t** ignore, long num, char* dir, int verbose, int flag) argument
869 split0(char* str, Dt_t** ignore, int flag) argument
[all...]
H A Dhead.c239 headset(register struct parse* pp, struct msg* mp, FILE* fp, struct header* hp, Dt_t** ignore, unsigned long flags) argument
260 pp->ignore = 0;
270 * Pun on GMETOO -- if from me then don't ignore To:
279 pp->ignore = ignore;
621 if (!pp->ignore || !ignored(pp->ignore, pp->name) || (pp->flags & GMETOO) && streq(pp->name, "To") && ((pp->flags &= ~GMETOO), 1)) {
H A Dmisc.c589 ignored(Dt_t** ignore, const char* field) argument
593 if (ignore == &state.ignoreall)
595 tp = dictsearch(ignore, field, LOOKUP);
596 if (*ignore && (dictflags(ignore) & RETAIN))
H A Dproc.c131 int ignore = 0; local
142 ignore = 1;
188 if (!ignore)
H A Dcmd1.c329 type1(struct msg* msgvec, Dt_t** ignore, int page, unsigned long flags) argument
357 copy(mp, obuf, ignore, NiL, flags);
371 return type1(msgvec, &state.ignore, 1, GMIME);
391 return type1(msgvec, &state.ignore, 0, GMIME);
576 blast1(struct msg* msgvec, Dt_t** ignore) argument
595 if (headset(&pp, mp, NiL, NiL, ignore, 0))
604 if (headset(&pp, mp, NiL, NiL, ignore, 0)) {
659 return blast1(msgvec, &state.ignore);
H A Dimap.c2011 imap_copy(register struct msg* mp, Sfio_t* op, Dt_t** ignore, char* prefix, unsigned long flags) argument
2038 if (ignore && *ignore)
2040 if (ignore == &state.ignoreall)
2044 if (dictflags(ignore) & RETAIN)
2056 for (np = (struct name*)dtfirst(*ignore); np; np = (struct name*)dtnext(*ignore, np))
2076 if (ignore && *ignore)
/ast/src/cmd/mam/
H A Dshmam.awk209 ignore($0)
327 ignore($0)
347 ignore($0)
528 function ignore(thisline) function
/ast/src/cmd/html/
H A Dhtmlrefs.c53 " [+ignore?\adir\a is a \bksh\b(1) pattern of paths to ignore.]"
206 String_t ignore; member in struct:State_s
618 else if (!strcasecmp(s, "ignore") && (v = &state->ignore) || state->external && !strcasecmp(s, "internal") && (v = &state->internal))
1178 if ((!(fp = dtmatch(state->files, ent->fts_path)) || !(fp->flags & COPIED)) && (!state->ignore.size || !strmatch(ent->fts_path, state->ignore.data)) && (!state->limit.size || strmatch(ent->fts_path, state->limit.data)))
1208 if (!dtmatch(state->files, ent->fts_path) && (!strmatch(ent->fts_name, state->keep.data) || state->skip.size && strmatch(ent->fts_name, state->skip.data) || state->ignore.size && strmatch(ent->fts_path, state->ignore.data)))
/ast/src/cmd/pax/
H A Dpax.c495 * 8 ignore all
497 * 6 ignore extended
1324 ignore(void) function
1634 ignore();
/ast/src/cmd/re/
H A Dtestmatch.c108 H(" i STR_ICASE ignore case\n");
207 } ignore; member in struct:__anon213
454 if (match[nmatch-2] != -2 && (!state.ignore.position || match[nmatch-2] >= 0 && match[nmatch-2] >= 0))
521 if (state.ignore.position && (match[i]<0 || match[i+1]<0))
523 state.ignore.count++;
660 state.ignore.position = 1;
734 state.ignore.count = state.lineno = state.signals = state.unspecified = state.warnings = 0;
1151 if (state.ignore.count)
1152 printf(", %d ignored mismatche%s", state.ignore.count, state.ignore
[all...]
H A Dtestglob.c102 H(" -e ignore error code mismatches\n");
126 H(" i GLOB_ICASE ignore case\n");
269 } ignore; member in struct:__anon211
575 state.ignore.error = 1;
576 printf(", ignore error code mismatches");
997 else if (state.ignore.error)
998 state.ignore.count++;
1080 if (state.ignore.count)
1081 printf(", %d ignored mismatche%s", state.ignore.count, state.ignore
[all...]
/ast/src/cmd/builtin/
H A Dpty.c71 "[I \are\a?ignore master lines matching \are\a]"
434 char* ignore; /* ignore master lines matching this re */ member in struct:Master_s
683 if (bp->ignore && match(bp->ignore, r, 0))
889 if (master->ignore)
891 vmfree(vm, master->ignore);
892 master->ignore = 0;
894 if (*s && !(master->ignore = vmstrdup(vm, s)))
/ast/src/cmd/tw/
H A Dtw.h179 int icase; /* ignore case in sort */
180 int ignore; /* ignore cmd and dir errors */ member in struct:__anon239
/ast/src/cmd/INIT/
H A Dmamake.c131 #define RULE_ignore 0x0020 /* ignore time */
234 int ignore; /* ignore command errors */ member in struct:__anon22
348 fprintf(stderr, "*** exit code %d making %s%s\n", code, r->name, state.ignore ? " ignored" : "");
350 if (state.ignore)
1415 if (n == 6 && !strncmp(t, "ignore", n))
2104 state.ignore = 1;
2209 state.ignore = 1;
H A Dproto.c385 struct ppcontext* context; long state; long mode; long option; long test; struct { char* sp; long flags; } filedeps; struct ppdirs* firstdir; struct ppdirs* lastdir; int hide; int column; int pending; char* firstfile; char* lastfile; char* ignore; char* probe; char* filtab; char* prdtab; char* date; char* time; char* maps; long ro_state; long ro_mode; long ro_option; long ro_op[2]; struct pathid cdir; struct pathid hostdir; char* ppdefault; struct ppindex* firstindex; struct ppindex* lastindex; struct oplist* firstop; struct oplist* lastop; struct oplist* firsttx; struct oplist* lasttx; unsigned char arg_file; unsigned char arg_mode; unsigned char arg_style; unsigned char c; unsigned char hosted; unsigned char ignoresrc; unsigned char initialized; unsigned char standalone; unsigned char spare_1; member in struct:ppglobals
437 struct ppcontext* context; long state; long mode; long option; long test; struct { char* sp; long flags; } filedeps; struct ppdirs* firstdir; struct ppdirs* lastdir; int hide; int column; int pending; char* firstfile; char* lastfile; char* ignore; char* probe; char* filtab; char* prdtab; char* date; char* time; char* maps; long ro_state; long ro_mode; long ro_option; long ro_op[2]; struct pathid cdir; struct pathid hostdir; char* ppdefault; struct ppindex* firstindex; struct ppindex* lastindex; struct oplist* firstop; struct oplist* lastop; struct oplist* firsttx; struct oplist* lasttx; unsigned char arg_file; unsigned char arg_mode; unsigned char arg_style; unsigned char c; unsigned char hosted; unsigned char ignoresrc; unsigned char initialized; unsigned char standalone; unsigned char spare_1; member in struct:ppcontext
/ast/src/cmd/coshell/
H A Dservice.h140 #define IGN (1<<2) /* ignore pool member */
150 #define SETIGNORE (1<<11) /* ignore was set */
198 int ignore; member in struct:__anon58

Completed in 87 milliseconds

12