| /freebsd/stand/common/ |
| H A D | console.c | 112 consoles[cons]->c_flags = 0; in cons_probe() 118 consoles[cons]->c_flags = 0; in cons_probe() 120 if (consoles[cons]->c_flags == (C_PRESENTIN | C_PRESENTOUT)) in cons_probe() 135 consoles[active]->c_flags |= C_ACTIVEIN | C_ACTIVEOUT; in cons_probe() 142 if (consoles[cons]->c_flags & (C_ACTIVEIN | C_ACTIVEOUT)) in cons_probe() 164 if ((consoles[cons]->c_flags & in getchar() 179 if ((consoles[cons]->c_flags & (C_PRESENTIN | C_ACTIVEIN)) == in ischar() 196 if ((consoles[cons]->c_flags & (C_PRESENTOUT | C_ACTIVEOUT)) == in putchar() 294 consoles[cons]->c_flags &= ~(C_ACTIVEIN | C_ACTIVEOUT); in cons_change() 306 consoles[cons]->c_flags |= C_ACTIVEIN | C_ACTIVEOUT; in cons_change() [all …]
|
| /freebsd/contrib/libxo/encoder/csv/ |
| H A D | enc_csv.c | 116 uint32_t c_flags; /* Flags for this encoder */ member 167 if (csv == NULL || !(csv->c_flags & CF_DEBUG)) in csv_dbg() 228 if (!(csv->c_flags & CF_HAS_PATH) || csv->c_path == NULL) in csv_path_top() 277 if (csv->c_flags & CF_NO_QUOTES) /* User doesn't want quotes */ in csv_quote_flags() 325 if (csv->c_flags & CF_DOS_NEWLINE) in csv_append_newline() 349 if (!(csv->c_flags & (CF_HEADER_DONE | CF_NO_HEADER))) { in csv_emit_record() 350 csv->c_flags |= CF_HEADER_DONE; in csv_emit_record() 412 csv->c_flags |= CF_LEAFS_DONE; in csv_emit_record() 425 if (csv->c_flags & CF_RECORD_DATA) { in csv_open_level() 426 csv->c_flags &= ~CF_RECORD_DATA; in csv_open_level() [all …]
|
| /freebsd/sys/sys/ |
| H A D | smr.h | 78 int c_flags; /* SMR Configuration */ member 111 KASSERT((smr->c_flags & SMR_LAZY) == 0, in smr_enter() 154 KASSERT((smr->c_flags & SMR_LAZY) == 0, in smr_exit() 180 KASSERT((smr->c_flags & SMR_LAZY) != 0, in smr_lazy_enter() 205 KASSERT((smr->c_flags & SMR_LAZY) != 0, in smr_lazy_exit()
|
| H A D | callout.h | 82 #define callout_active(c) ((c)->c_flags & CALLOUT_ACTIVE) 83 #define callout_deactivate(c) ((c)->c_flags &= ~CALLOUT_ACTIVE)
|
| H A D | _callout.h | 62 short c_flags; /* User State */ member
|
| H A D | _umtx.h | 53 __uint32_t c_flags; /* Flags of the condition variable */ member
|
| /freebsd/stand/efi/libefi/ |
| H A D | eficom.c | 71 .c_flags = 0, 84 .c_flags = 0, 361 sc->c_flags = C_PRESENTIN | C_PRESENTOUT; in comc_probe() 363 sc->c_flags &= ~(C_PRESENTIN | C_PRESENTOUT); in comc_probe() 374 if (eficom.c_flags & (C_PRESENTIN | C_PRESENTOUT)) { in comc_probe_compat() 396 eficom.c_flags &= ~(C_ACTIVEIN | C_ACTIVEOUT); in comc_init() 431 if ((efi_console.c_flags & C_ACTIVEIN) == 0) in comc_getchar() 457 if ((efi_console.c_flags & C_ACTIVEIN) == 0) in comc_ischar() 559 if ((eficom.c_flags & (C_ACTIVEIN | C_ACTIVEOUT)) == 0 || comc_port == NULL) in comc_setup() 600 eficom.c_flags |= (C_PRESENTIN | C_PRESENTOUT); in comc_setup()
|
| /freebsd/stand/i386/libi386/ |
| H A D | comconsole.c | 69 .c_flags = 0, 141 if ((comconsole.c_flags & (C_PRESENTIN | C_PRESENTOUT)) == in comc_init() 307 if ((comconsole.c_flags & (C_ACTIVEIN | C_ACTIVEOUT)) != 0 && in comc_pcidev_set() 326 if ((comconsole.c_flags & (C_ACTIVEIN | C_ACTIVEOUT)) == 0) in comc_setup() 337 comconsole.c_flags &= ~(C_PRESENTIN | C_PRESENTOUT); in comc_setup() 353 comconsole.c_flags |= (C_PRESENTIN | C_PRESENTOUT); in comc_setup() 357 comconsole.c_flags &= ~(C_PRESENTIN | C_PRESENTOUT); in comc_setup()
|
| H A D | nullconsole.c | 60 cp->c_flags |= (C_PRESENTIN | C_PRESENTOUT); in nullc_probe()
|
| H A D | textvidc.c | 90 cp->c_flags |= C_PRESENTIN; in vidc_probe() 94 cp->c_flags |= C_PRESENTOUT; in vidc_probe()
|
| /freebsd/usr.bin/systat/ |
| H A D | main.c | 234 curcmd->c_flags |= CF_INIT; in main() 255 if (curcmd->c_flags & CF_LOADAV) { in labels() 260 if (curcmd->c_flags & CF_ZFSARC) { in labels() 282 if (curcmd->c_flags & CF_LOADAV) { in display() 300 if (curcmd->c_flags & CF_ZFSARC) { in display() 321 if (curcmd->c_flags & (CF_LOADAV |CF_ZFSARC)) in display()
|
| H A D | cmds.c | 117 curcmd->c_flags &= ~CF_INIT; in command() 128 if ((p->c_flags & CF_INIT) == 0) { in command() 130 p->c_flags |= CF_INIT; in command()
|
| H A D | systat.h | 45 char c_flags; /* see below */ member
|
| /freebsd/sys/kern/ |
| H A D | subr_smr.c | 275 KASSERT((zpcpu_get(smr)->c_flags & SMR_LAZY) == 0, in smr_default_advance() 349 flags = self->c_flags; in smr_advance() 489 KASSERT(!wait || (zpcpu_get(smr)->c_flags & SMR_LAZY) == 0, in smr_poll() 501 flags = self->c_flags; in smr_poll() 604 c->c_flags = flags; in smr_create()
|
| H A D | kern_timeout.c | 597 c->c_flags |= CALLOUT_ACTIVE; in callout_cc_add() 655 KASSERT((c->c_flags & CALLOUT_ACTIVE) == CALLOUT_ACTIVE, in softclock_call_cc() 656 ("softclock_call_cc: act %p %x", c, c->c_flags)); in softclock_call_cc() 1018 c->c_flags &= ~ CALLOUT_ACTIVE; in callout_reset_sbt_on() 1051 c->c_flags |= CALLOUT_ACTIVE; in callout_reset_sbt_on() 1125 ((c->c_flags & CALLOUT_ACTIVE) == CALLOUT_ACTIVE)) { in _callout_stop_safe() 1139 c->c_flags &= ~CALLOUT_ACTIVE; in _callout_stop_safe() 1173 c->c_flags &= ~CALLOUT_ACTIVE; in _callout_stop_safe() 1232 c->c_flags &= ~CALLOUT_ACTIVE; in _callout_stop_safe() 1315 c->c_flags &= ~CALLOUT_ACTIVE; in _callout_stop_safe() [all …]
|
| /freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
| H A D | _libzfs_core.py | 593 c_flags = 0 605 c_flags |= c_flag 607 ret = _lib.lzc_send(snapname, c_fromsnap, fd, c_flags) 645 c_flags = 0 657 c_flags |= c_flag 660 ret = _lib.lzc_send_space(snapname, c_fromsnap, c_flags, valp) 1564 c_flags = 0 1576 c_flags |= c_flag 1579 snapname, c_fromsnap, fd, c_flags, uint64_t(resumeobj),
|
| /freebsd/stand/userboot/userboot/ |
| H A D | userboot_cons.c | 72 cp->c_flags |= (C_PRESENTIN | C_PRESENTOUT); in userboot_cons_probe() 103 userboot_comconsp->c_flags |= (C_PRESENTIN | C_PRESENTOUT); in userboot_comcons_init()
|
| /freebsd/crypto/krb5/src/kdc/ |
| H A D | kdc_log.c | 122 unsigned int c_flags, in log_tgs_req() argument 153 if (isflagset(c_flags, KRB5_KDB_FLAG_PROTOCOL_TRANSITION)) in log_tgs_req() 157 else if (isflagset(c_flags, KRB5_KDB_FLAG_CONSTRAINED_DELEGATION)) in log_tgs_req()
|
| H A D | do_as_req.c | 177 unsigned int c_flags; member 270 errcode = handle_authdata(realm, state->c_flags, state->client, in finish_process_as_req() 573 setflag(state->c_flags, KRB5_KDB_FLAG_CLIENT); in process_as_req() 576 setflag(state->c_flags, KRB5_KDB_FLAG_REFERRAL_OK); in process_as_req() 577 errcode = lookup_client(context, state->request, state->c_flags, in process_as_req()
|
| /freebsd/usr.bin/mt/ |
| H A D | mt.c | 119 int c_flags; member 231 if((comp->c_flags & NEED_2ARGS) && argc != 2) in main() 233 if(comp->c_flags & DISABLE_THIS) { in main() 236 if (comp->c_flags & USE_GETOPT) { in main() 247 (comp->c_flags & IS_DENSITY)) { in main() 259 (comp->c_flags & IS_COMP)) { in main() 266 } else if ((comp->c_flags & USE_GETOPT) == 0) { in main() 272 if (((comp->c_flags & USE_GETOPT) == 0) in main() 274 ((comp->c_flags & ZERO_ALLOWED)? -1: 0)) in main() 275 && ((comp->c_flags & IS_COMP) == 0)) in main()
|
| /freebsd/sbin/ggate/ggated/ |
| H A D | ggated.c | 67 int c_flags; /* flags (RO/RW) */ member 362 conn->c_flags |= GGATE_FLAG_RDONLY; in exports_check() 371 conn->c_flags |= GGATE_FLAG_WRONLY; in exports_check() 393 conn->c_flags |= GGATE_FLAG_DIRECT; in exports_check() 402 if ((conn->c_flags & GGATE_FLAG_RDONLY) != 0) in exports_check() 404 else if ((conn->c_flags & GGATE_FLAG_WRONLY) != 0) in exports_check() 533 conn->c_flags = cinit->gc_flags; in connection_new()
|
| /freebsd/stand/uboot/ |
| H A D | uboot_console.c | 53 cp->c_flags |= (C_PRESENTIN | C_PRESENTOUT); in uboot_cons_probe()
|
| /freebsd/stand/kboot/kboot/ |
| H A D | hostcons.c | 53 cp->c_flags |= C_PRESENTIN|C_PRESENTOUT; in hostcons_probe()
|
| /freebsd/stand/libofw/ |
| H A D | ofw_console.c | 59 cp->c_flags |= C_PRESENTIN|C_PRESENTOUT; in ofw_cons_probe()
|
| /freebsd/include/protocols/ |
| H A D | dumprestore.h | 120 int32_t c_flags; /* additional information */ member
|