/freebsd/stand/common/ |
H A D | console.c | 93 consoles[cons]->c_flags = 0; in cons_probe() 99 consoles[cons]->c_flags = 0; in cons_probe() 101 if (consoles[cons]->c_flags == (C_PRESENTIN | C_PRESENTOUT)) in cons_probe() 116 consoles[active]->c_flags |= C_ACTIVEIN | C_ACTIVEOUT; in cons_probe() 123 if (consoles[cons]->c_flags & (C_ACTIVEIN | C_ACTIVEOUT)) in cons_probe() 145 if ((consoles[cons]->c_flags & in getchar() 160 if ((consoles[cons]->c_flags & (C_PRESENTIN | C_ACTIVEIN)) == in ischar() 177 if ((consoles[cons]->c_flags & (C_PRESENTOUT | C_ACTIVEOUT)) == in putchar() 271 consoles[cons]->c_flags &= ~(C_ACTIVEIN | C_ACTIVEOUT); in cons_change() 283 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/stand/efi/libefi/ |
H A D | eficom.c | 70 .c_flags = 0, 83 .c_flags = 0, 360 sc->c_flags = C_PRESENTIN | C_PRESENTOUT; in comc_probe() 362 sc->c_flags &= ~(C_PRESENTIN | C_PRESENTOUT); in comc_probe() 373 if (eficom.c_flags & (C_PRESENTIN | C_PRESENTOUT)) { in comc_probe_compat() 395 eficom.c_flags &= ~(C_ACTIVEIN | C_ACTIVEOUT); in comc_init() 430 if ((efi_console.c_flags & C_ACTIVEIN) == 0) in comc_getchar() 456 if ((efi_console.c_flags & C_ACTIVEIN) == 0) in comc_ischar() 558 if ((eficom.c_flags & (C_ACTIVEIN | C_ACTIVEOUT)) == 0 || comc_port == NULL) in comc_setup() 599 eficom.c_flags |= (C_PRESENTIN | C_PRESENTOUT); in comc_setup()
|
/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/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 | 233 curcmd->c_flags |= CF_INIT; in main() 254 if (curcmd->c_flags & CF_LOADAV) { in labels() 259 if (curcmd->c_flags & CF_ZFSARC) { in labels() 281 if (curcmd->c_flags & CF_LOADAV) { in display() 299 if (curcmd->c_flags & CF_ZFSARC) { in display() 320 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/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/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
H A D | _libzfs_core.py | 631 c_flags = 0 643 c_flags |= c_flag 645 ret = _lib.lzc_send(snapname, c_fromsnap, fd, c_flags) 683 c_flags = 0 695 c_flags |= c_flag 698 ret = _lib.lzc_send_space(snapname, c_fromsnap, c_flags, valp) 1609 c_flags = 0 1621 c_flags |= c_flag 1624 snapname, c_fromsnap, fd, c_flags, uint64_t(resumeobj),
|
/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
|
/freebsd/usr.bin/find/ |
H A D | extern.h | 56 creat_f c_flags; variable
|
/freebsd/lib/libthr/thread/ |
H A D | thr_barrier.c | 124 bar->b_cv.c_flags |= USYNC_PROCESS_SHARED; in _pthread_barrier_init()
|