| /src/usr.bin/menuc/ |
| parse.y | 138 opt : NO EXIT { cur_menu->info->mopt |= MC_NOEXITOPT; } 139 | EXIT { cur_menu->info->mopt &= ~MC_NOEXITOPT; } 140 | NO BOX { cur_menu->info->mopt |= MC_NOBOX; } 141 | BOX { cur_menu->info->mopt &= ~MC_NOBOX; } 142 | NO SCROLLABLE { cur_menu->info->mopt &= ~MC_SCROLL; } 143 | SCROLLABLE { cur_menu->info->mopt |= MC_SCROLL; } 144 | NO SHORTCUT { cur_menu->info->mopt |= MC_NOSHORTCUT; } 145 | SHORTCUT { cur_menu->info->mopt &= ~MC_NOSHORTCUT; } 146 | NO CLEAR { cur_menu->info->mopt |= MC_NOCLEAR; } 147 | CLEAR { cur_menu->info->mopt &= ~MC_NOCLEAR; [all...] |
| menu_sys.def | 146 hadd = ((m->mopt & MC_NOBOX) ? 0 : 147 ((m->mopt & MC_CONTINUOUS) ? 1 : 2)); 148 wadd = ((m->mopt & MC_NOBOX) ? 2 : 4); 149 if (!(m->mopt & MC_NOSHORTCUT)) 175 exithadd = ((m->mopt & MC_NOEXITOPT) ? 0 : 1); 193 if (m->h <= 4 || !(m->mopt & (MC_SCROLL | MC_ALWAYS_SCROLL))) { 202 if (m->h < m->numopts + exithadd || m->mopt & MC_ALWAYS_SCROLL) { 279 if (m->mopt & MC_SUBMENU) { 313 int hasbox = m->mopt & MC_NOBOX ? 0 : 1; 322 if (!(m->mopt & MC_NOSHORTCUT) && !noshort [all...] |
| mdb.h | 78 int mopt; member in struct:menu_info 89 /* defines for mopt */
|
| main.c | 91 default_info.mopt = 0;
|
| mdb.c | 198 " short mopt;\n" 217 "/* defines for mopt field. */\n" 386 menus[i]->info->w, menus[i]->info->mopt, 410 if (menus[i]->info->mopt & MC_NOEXITOPT)
|
| /src/sys/net80211/ |
| ieee80211.c | 384 int i, j, mode, rate, maxrate, mword, mopt, r; local 417 mopt = mopts[mode]; 418 ADD(ic, IFM_AUTO, mopt); /* e.g. 11a auto */ 420 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_ADHOC); 422 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_HOSTAP); 424 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_ADHOC | IFM_FLAG0); 426 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_MONITOR); 435 ADD(ic, mword, mopt); 437 ADD(ic, mword, mopt | IFM_IEEE80211_ADHOC); 439 ADD(ic, mword, mopt | IFM_IEEE80211_HOSTAP) [all...] |
| /src/sys/netinet6/ |
| ip6_output.c | 1104 struct mbuf *mopt; local 1117 MGET(mopt, M_DONTWAIT, MT_DATA); 1118 if (mopt == 0) 1120 mopt->m_len = JUMBOOPTLEN; 1121 optbuf = mtod(mopt, u_int8_t *); 1123 exthdrs->ip6e_hbh = mopt; 1127 mopt = exthdrs->ip6e_hbh; 1128 if (M_TRAILINGSPACE(mopt) < JUMBOOPTLEN) { 1129 const int oldoptlen = mopt->m_len; 1138 KASSERT(mopt->m_next == NULL) [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/ |
| llvm_debuginfo.mli | 621 (** [instr_set_debug_loc i mopt] If [mopt] is None location metadata of [i] 622 is cleared, Otherwise location of [i] is set to the value in [mopt]. *)
|
| llvm_debuginfo.ml | 532 let instr_set_debug_loc i mopt = 533 match mopt with
|
| /src/sys/netinet/ |
| sctp_usrreq.c | 2380 int error, *mopt, set_opt; local 2408 mopt = sopt->sopt_data; 2437 inp->sctp_ep.auto_close_time = (*mopt * hz); 2441 if (*mopt != 0) {
|
| /src/external/gpl3/gcc/dist/gcc/ |
| var-tracking.cc | 5587 /* Log to OUT information about micro-operation MOPT involving X in 5592 enum micro_operation_type mopt, FILE *out) 5596 INSN_UID (insn), micro_operation_type_name[mopt]);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| var-tracking.cc | 5602 /* Log to OUT information about micro-operation MOPT involving X in 5607 enum micro_operation_type mopt, FILE *out) 5611 INSN_UID (insn), micro_operation_type_name[mopt]);
|