Searched defs:ignore (Results 1 - 8 of 8) sorted by relevance
/osnet-11/usr/src/lib/libparted/common/lib/ |
H A D | closeout.c | 49 - If ignore = true, it shall be ignored. 50 - If ignore = false, it shall evoke a diagnostic, along with a nonzero 52 The default is ignore = false. 56 temporarily ignore SIGPIPE. If SIGPIPE is ignored or blocked because 65 The ignore = false setting is suitable for a scenario where it is normally 70 The ignore = true setting is suitable for a scenario where you don't know 78 close_stdout_set_ignore_EPIPE (bool ignore) argument 80 ignore_EPIPE = ignore;
|
/osnet-11/usr/src/lib/libcmd/common/ |
H A D | chmod.c | 72 "\b--ignore-umask\b option is specified.]" 112 "[i:ignore-umask?Ignore the \bumask\b(2) value in symbolic mode " 163 int ignore = 0; local 194 ignore = 1; 236 if (ignore) 237 ignore = umask(0); 246 if (ignore) 247 umask(ignore); 258 if (ignore) 259 umask(ignore); [all...] |
H A D | ls.c | 56 "[B:ignore-backups?Do not list entries ending with ~.]" 127 "[I:ignore?Do not list implied entries matching shell \apattern\a.]:[pattern]" 251 #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]))) 344 char* ignore; /* ignore files matching this */ member in struct:__anon1493 1561 state.ignore = opt_info.arg;
|
/osnet-11/usr/src/lib/libc/port/stdio/ |
H A D | system.c | 55 static struct sigaction ignore = {0, {SIG_IGN}, {0}}; variable in typeref:struct:sigaction 219 (void) sigaction(SIGINT, &ignore, &sys_ibuf); 220 (void) sigaction(SIGQUIT, &ignore, &sys_qbuf);
|
/osnet-11/usr/src/lib/libfsmgt/common/ |
H A D | nfs_mntinfo.c | 62 static int ignore(char *); 286 /* ignore non "nfs" and the "ignore" entries */ 289 (ignore(fsmnt_list->mntopts))) { 459 * ignore - Checks for the ignore mount option in the mount opts string. 460 * Returns 1 if the ignore option is found and 0 if not. 463 ignore(char *opts) function 485 } /* ignore */
|
/osnet-11/usr/src/lib/lvm/libmeta/common/ |
H A D | metarpcopen.c | 184 void *ignore, 183 client_create_vers_retry(char *hostname, void *ignore, struct timeval *tout ) argument
|
/osnet-11/usr/src/tools/onbld/hgext/ |
H A D | cdm.py | 103 from mercurial import cmdutil, ignore, node, patch namespace 157 # The ignore routines need a canonical path to the file (relative to the 179 ign = ignore.ignore(repo.root, ignorefiles, repo.ui.warn) 443 # We also ignore files with suffixes that tell us that the files 1445 ('w', 'ignore-all-space', None, 1446 'ignore white space when comparing lines'), 1447 ('b', 'ignore-space-change', None, 1448 'ignore changes in the amount of white space'), 1449 ('B', 'ignore [all...] |
/osnet-11/usr/src/cmd/sendmail/src/ |
H A D | daemon.c | 366 ** That's also why we currently ignore the 476 /* let's ignore these temporary errors */ 2888 connecttimeout(ignore) 2889 int ignore; 3107 sigfunc_t ignore, oalrm, ousr1; local 3169 SM_NOOP_SIGNAL(SIGCHLD, ignore); 3170 SM_NOOP_SIGNAL(SIGHUP, ignore); 3171 SM_NOOP_SIGNAL(SIGINT, ignore); 3172 SM_NOOP_SIGNAL(SIGPIPE, ignore); 3173 SM_NOOP_SIGNAL(SIGTERM, ignore); [all...] |
Completed in 99 milliseconds