Searched refs:FALSE (Results 1 - 25 of 302) sorted by relevance

1234567891011>>

/macosx-10.5.8/xnu-1228.15.4/osfmk/mach/
H A Dboolean.h77 * Define TRUE and FALSE if not defined.
84 #ifndef FALSE
85 #define FALSE 0 macro
86 #endif /* FALSE */
H A Dmemory_object_types.h433 #define UPL_RET_ONLY_ABSENT 0x00000100 /* used only for COPY_FROM = FALSE */
590 (((upl)[0].phys_addr != 0) ? ((upl)[0].device) : FALSE)
599 (((upl)[(index)].phys_addr != 0) ? ((upl)[(index)].speculative) : FALSE)
602 (((upl)[(index)].phys_addr != 0) ? ((upl)[(index)].dirty) : FALSE)
605 (((upl)[(index)].phys_addr != 0) ? ((upl)[(index)].precious) : FALSE)
608 (((upl)[(index)].phys_addr != 0) ? (!((upl)[(index)].absent)) : FALSE)
611 (((upl)[(index)].phys_addr != 0) ? ((upl)[(index)].pageout) : FALSE)
615 ((upl)[(index)].pageout = TRUE) : FALSE)
619 ((upl)[(index)].pageout = FALSE) : FALSE)
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dspl.h35 #define splhigh() (spl_t) ml_set_interrupts_enabled(FALSE)
36 #define splsched() (spl_t) ml_set_interrupts_enabled(FALSE)
37 #define splclock() (spl_t) ml_set_interrupts_enabled(FALSE)
H A Dspl.c41 return(ml_set_interrupts_enabled(FALSE));
48 return(ml_set_interrupts_enabled(FALSE));
55 return(ml_set_interrupts_enabled(FALSE));
H A Dmacro_help.h74 #define NEVER FALSE
H A Dsyscall_sw.h96 { (arg_count), (int (*)(void)) (name), FALSE, 0 }
99 { (arg_count), (int (*)(void)) (name), FALSE, #name }
H A Dsync_lock.c186 ulock->blocked = FALSE;
187 ulock->unstable = FALSE;
188 ulock->ho_wait = FALSE;
232 lock_set->active = FALSE;
251 ulock->accept_wait = FALSE;
259 ulock->blocked = FALSE;
265 ulock->ho_wait = FALSE;
467 ulock->unstable = FALSE;
578 ulock->blocked = FALSE;
665 ulock->accept_wait = FALSE;
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Ddb_disasm.c201 boolean_t db_disasm_16 = FALSE;
312 /*04*/ { "", FALSE, NONE, 0, 0 },
313 /*05*/ { "", FALSE, NONE, 0, 0 },
314 /*06*/ { "clts", FALSE, NONE, 0, 0 },
315 /*07*/ { "", FALSE, NONE, 0, 0 },
317 /*08*/ { "invd", FALSE, NONE, 0, 0 },
318 /*09*/ { "wbinvd",FALSE, NONE, 0, 0 },
319 /*0a*/ { "", FALSE, NONE, 0, 0 },
320 /*0b*/ { "", FALSE, NONE, 0, 0 },
321 /*0c*/ { "", FALSE, NON
[all...]
H A Dmp_desc.h143 return (FALSE);
152 return (FALSE);
163 return (FALSE);
172 return (FALSE);
183 return (FALSE);
H A Di386_init.c146 PE_init_platform(FALSE, kernelBootArgs);
153 PE_init_kprintf(FALSE);
165 disableConsoleOutput = FALSE; /* Allow printfs to happen */
169 PE_init_printf(FALSE);
191 force_immediate_debugger_NMI = FALSE;
199 boolean_t IA32e = FALSE;
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dsel_inline.h93 return (FALSE);
105 return (FALSE);
118 return (FALSE);
130 return (FALSE);
143 return (FALSE);
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_srvcache.c108 FALSE,
109 FALSE,
111 FALSE,
112 FALSE,
113 FALSE,
114 FALSE,
124 FALSE,
125 FALSE,
126 FALSE,
127 FALSE,
[all...]
/macosx-10.5.8/xnu-1228.15.4/pexpert/i386/
H A Dpe_kprintf.c50 if (PE_state.initialized == FALSE)
58 disable_serial_output = FALSE;
95 state = ml_set_interrupts_enabled(FALSE);
98 ml_set_interrupts_enabled(FALSE);
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Ddb_machdep.h91 #define IS_BREAKPOINT_TRAP(type, code) (FALSE)
92 #define IS_WATCHPOINT_TRAP(type, code) (FALSE)
94 #define inst_trap_return(ins) (FALSE)
95 #define inst_return(ins) (FALSE)
96 #define inst_call(ins) (FALSE)
169 #define db_act_fp_used(act) (FALSE)
/macosx-10.5.8/xnu-1228.15.4/libsyscall/mach/
H A Dmach_init.c82 static boolean_t mach_init_inited = FALSE;
109 mach_init_inited = FALSE;
140 first = FALSE;
219 0, FALSE, MEMORY_OBJECT_NULL, 0, TRUE,
H A Dsbrk.c54 sbrk_needs_init = FALSE;
/macosx-10.5.8/xnu-1228.15.4/osfmk/ddb/
H A Ddb_run.c145 *is_breakpoint = FALSE;
149 return (FALSE); /* continue */
152 return (FALSE); /* continue */
159 return (FALSE); /* continue */
168 ins = db_get_task_value(db_stop_pc, sizeof(int), FALSE, space);
194 return (FALSE); /* continue */
202 ins = db_get_task_value(db_stop_pc, sizeof(int), FALSE, space);
210 return (FALSE); /* continue */
214 return(FALSE);
240 ins = db_get_task_value(pc, sizeof(int), FALSE, tas
[all...]
H A Ddb_expr.c95 boolean_t valid_symbol = FALSE;
96 boolean_t valid_hexa = FALSE;
118 valid_hexa = FALSE;
154 return (FALSE);
188 return (FALSE);
201 *u_option = FALSE;
202 *t_option = FALSE;
250 u_opt = FALSE;
281 return (FALSE);
326 return (FALSE);
[all...]
H A Ddb_write_cmd.c89 boolean_t wrote_one = FALSE;
118 old_value = db_get_task_value(addr, size, FALSE, task);
/macosx-10.5.8/xnu-1228.15.4/osfmk/vm/
H A Dvm_pageout.c360 boolean_t vm_pages_encrypted = FALSE; /* are there encrypted pages ? */
440 p->pageout = FALSE;
458 m->dump_cleaning = FALSE;
483 m->cleaning = FALSE;
484 m->encrypted_cleaning = FALSE;
485 m->pageout = FALSE;
502 m->dirty = FALSE;
530 /* the request_page_list case, (COPY_OUT_FROM FALSE) */
531 m->busy = FALSE;
542 m->absent = FALSE;
[all...]
H A Dvm_init.c89 boolean_t vm_kernel_ready = FALSE;
90 boolean_t zlog_ready = FALSE;
H A Dvm_resident.c399 m->speculative = FALSE;
400 m->throttled = FALSE;
401 m->inactive = FALSE;
402 m->active = FALSE;
403 m->no_cache = FALSE;
404 m->laundry = FALSE;
405 m->free = FALSE;
406 m->pmapped = FALSE;
407 m->wpmapped = FALSE;
408 m->reference = FALSE;
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/ufs/ufs/
H A Dufs_attrlist.c132 return (FALSE);
140 return (FALSE);
147 return (FALSE);
158 return (FALSE);
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dnetboot.c141 return (FALSE);
145 return (FALSE);
174 return (FALSE);
178 return (FALSE);
185 return (FALSE);
260 return (FALSE);
267 return (FALSE);
271 return (FALSE);
308 boolean_t found = FALSE;
314 return (FALSE);
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/console/
H A Dvideo_console.c126 static boolean_t gc_enabled = FALSE;
127 static boolean_t gc_initialized = FALSE;
128 static boolean_t vm_initialized = FALSE;
361 if ( enable == FALSE )
364 if ( console_is_serial() == FALSE )
366 gc_enabled = FALSE;
367 gc_ops.enable(FALSE);
455 disableConsoleOutput = FALSE;
471 gc_update_color(COLOR_CODE_GET(colorcode, FALSE), FALSE); local
476 gc_update_color(COLOR_CODE_GET(colorcodesave, FALSE), FALSE); local
1012 gc_update_color(COLOR_CODE_GET(gc_buffer_colorcodes[index - jump], FALSE), FALSE); local
1044 gc_update_color(COLOR_CODE_GET(colorcodesave, FALSE), FALSE); local
1121 gc_update_color(COLOR_CODE_GET(gc_buffer_colorcodes[index + jump], FALSE), FALSE); local
1153 gc_update_color(COLOR_CODE_GET(colorcodesave, FALSE), FALSE); local
1216 gc_update_color(COLOR_CODE_GET(colorcode, TRUE ), FALSE); local
1221 gc_update_color(COLOR_CODE_GET(colorcodesave, FALSE), FALSE); local
[all...]

Completed in 223 milliseconds

1234567891011>>