HomeSort by: relevance | last modified time | path
    Searched defs:how (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/modules/panic/
panic.c 62 const char *how = NULL; local in function:panic_modcmd
66 prop_dictionary_get_string(props, "how", &how);
67 if (how == NULL)
68 how = "panic";
71 if (strcmp(how, panic_howto[i].name) == 0) {
77 printf("%s: no how '%s'\n", __func__, how);
79 printf("%s: how '%s' didn't panic?\n", __func__, how);
    [all...]
  /src/bin/ksh/
c_ulimit.c 130 int how = SOFT | HARD; local in function:c_ulimit
151 how = HARD;
154 how = SOFT;
209 if (how & SOFT)
211 else if (how & HARD)
242 if (how & SOFT)
244 if (how & HARD)
255 if (how & SOFT)
257 else if (how & HARD)
c_sh.c 538 int how = LEXIT; local in function:c_exitreturn
561 how = LRETURN;
566 if (how == LEXIT && !really_exit && j_stopped_running()) {
568 how = LSHELL;
572 unwind(how);
jobs.c 216 static void j_print ARGS((Job *j, int how, struct shf *shf));
955 int how; local in function:j_jobs
975 how = slp == 0 ? JP_MEDIUM : (slp == 1 ? JP_LONG : JP_PGRP);
980 j_print(j, how, shl_stdout);
1431 j_print(j, how, shf)
1433 int how;
1445 if (how == JP_PGRP) {
1472 if (how == JP_SHORT)
1486 if (how == JP_SHORT && !coredumped
1496 if (how != JP_SHORT)
    [all...]
  /src/sys/dev/scsipi/
scsi_all.h 47 u_int8_t how; member in struct:scsi_changedef
scsi_tape.h 103 u_int8_t how; member in struct:scsi_load
scsipi_all.h 74 u_int8_t how; member in struct:scsipi_start_stop
scsi_spc.h 348 uint8_t how; member in struct:scsi_prevent_allow_medium_removal
  /src/lib/libedit/
el.c 638 const wchar_t *how; local in function:el_editmode
643 how = argv[1];
644 if (wcscmp(how, L"on") == 0) {
647 } else if (wcscmp(how, L"off") == 0) {
653 how);
terminal.c 1316 char what[8], how[8]; local in function:terminal_settc
1324 strlcpy(how, ct_encode_string(argv[2], &el->el_scratch), sizeof(how));
1334 terminal_alloc(el, ts, how);
1356 if (strcmp(how, "yes") == 0)
1358 else if (strcmp(how, "no") == 0)
1362 "%ls: Bad value `%s'.\n", argv[0], how);
1372 i = strtol(how, &ep, 10);
1375 "%ls: Bad value `%s'.\n", argv[0], how);
1403 void *how; local in function:terminal_gettc
    [all...]
  /src/common/dist/zlib/
gzguts.h 164 /* values for gz_state how */
186 int how; /* 0: get header, 1: copy, 2: decompress */ member in struct:__anone1a3ef820108
  /src/sys/kern/
sys_descrip.c 624 syscallarg(int) how;
626 int fd, how, error; local in function:sys_flock
632 how = SCARG(uap, how);
648 switch (how & ~LOCK_NB) {
666 if (how & LOCK_NB) {
  /src/sys/compat/linux32/common/
linux32_signal.c 355 syscallarg(int) how;
364 int how; local in function:linux32_sys_rt_sigprocmask
369 switch (SCARG(uap, how)) {
371 how = SIG_BLOCK;
374 how = SIG_UNBLOCK;
377 how = SIG_SETMASK;
392 error = sigprocmask1(l, how,
  /src/sys/compat/linux/common/
linux_signal.c 409 linux_sigprocmask1(struct lwp *l, int how, const linux_old_sigset_t *set, linux_old_sigset_t *oset)
416 switch (how) {
418 how = SIG_BLOCK;
421 how = SIG_UNBLOCK;
424 how = SIG_SETMASK;
437 error = sigprocmask1(l, how,
456 syscallarg(int) how;
465 int error, how; local in function:linux_sys_rt_sigprocmask
470 switch (SCARG(uap, how)) {
472 how = SIG_BLOCK
    [all...]
  /src/bin/sh/
miscbltin.c 637 how = 0, which; local in function:ulimitcmd
647 how |= HARD;
650 how |= SOFT;
670 if (how == 0)
671 how = HARD | SOFT;
692 } else if (how == 0)
693 how = SOFT;
701 which = how;
730 if (how & HARD)
732 if (how & SOFT
    [all...]
  /src/usr.bin/man/
man.c 86 int how; /* -h: show SYNOPSIS only */ member in struct:manstate
121 static void how(const char *);
163 m.how = 1;
225 if (!m.cat && !m.how && !m.where) { /* if we need a pager ... */
413 * handle the simple display cases first (m.cat, m.how, m.where)
423 if (m.how) {
427 how(*ap);
843 * how --
844 * display how information
847 how(const char *fname function in typeref:typename:void
    [all...]
  /src/sys/nfs/
nfs_serv.c 1436 int v3 = (nfsd->nd_flag & ND_NFSV3), how, exclusive_flag = 0; local in function:nfsrv_create
1469 how = fxdr_unsigned(int, *tl);
1470 switch (how) {
  /src/sys/fs/nfs/server/
nfs_nfsdserv.c 68 * (Don't ask me how you get these strings from the RFC stuff like
865 * Loop through the mbuf chain, counting how many mbufs are a
985 int how = NFSCREATE_UNCHECKED, exclusive_flag = 0; local in function:nfsrvd_create
1031 how = fxdr_unsigned(int, *tl);
1032 switch (how) {
1081 switch (how) {
2585 int how = NFSCREATE_UNCHECKED; local in function:nfsrvd_open
2705 how = fxdr_unsigned(int, *tl);
2706 switch (how) {
2811 switch (how) {
    [all...]

Completed in 57 milliseconds