Home
last modified time | relevance | path

Searched refs:started (Results 1 – 17 of 17) sorted by relevance

/xnu-11215/iokit/Kernel/
H A DIOPerfControl.cpp302 workTable[token].started = started; in markEntryStarted()
407 .started = false, in workSubmit()
440 .started = false, in workSubmitAndBegin()
479 .started = true, in workBegin()
501 .started = entry->started, in workEnd()
533 bool started; member in IOPerfControlWorkContext
559 started = false; in reset()
604 .started = true, in workSubmitAndBeginWithContext()
639 .started = false, in workSubmitWithContext()
713 .started = true, in workBeginWithContext()
[all …]
H A DIOUserServer.cpp386 bool started; in RegisterService_Impl() local
390 started = reserved->uvars->started; in RegisterService_Impl()
393 started = true; in RegisterService_Impl()
396 if (OSDynamicCast(IOUserServer, this) != NULL || started) { in RegisterService_Impl()
4055 bool started = false; in finalize()
4068 started = nextService->reserved->uvars->started; in finalize()
4075 if (started) { in finalize()
4079 if (!started) { in finalize()
4269 … (nextService->reserved && nextService->reserved->uvars && nextService->reserved->uvars->started) { in clientClose()
5241 service->reserved->uvars->started = true; in Create_Impl()
[all …]
H A DIOService.cpp786 if (reserved->uvars && reserved->uvars->started && reserved->uvars->userServer) { in stop()
3864 bool started; in probeCandidates() local
4185 started = false; in probeCandidates()
4195 if (started) { in probeCandidates()
4202 if (false == started) { in probeCandidates()
4225 started = startCandidate( inst ); in probeCandidates()
4227 if ((debugFlags & kIOLogStart) && (false == started)) { in probeCandidates()
4232 if (!started && inst->propertyExists(gIOServiceMatchDeferredKey)) { in probeCandidates()
/xnu-11215/iokit/IOKit/perfcontrol/
H A DIOPerfControl.h288 uint32_t started : 1; member
355 bool started; member
368 void markEntryStarted(uint64_t token, bool started);
/xnu-11215/osfmk/kern/
H A Dthread_act.c177 thread->started = TRUE; in thread_start()
210 assert(!thread->started); in thread_start_in_assert_wait()
226 thread->started = TRUE; in thread_start_in_assert_wait()
254 if (thread->started) { in thread_terminate_internal()
410 if (!thread->started) { in thread_release()
H A Dthread.h789 started:1, /* Thread has been started after creation */ member
H A Dwaitq.c1341 assert(!thread->started || thread == current_thread()); in waitq_assert_wait64_locked()
H A Dthread.c3454 if (thread != current_thread() && thread->started) { in thread_set_mach_voucher()
H A Dsched_prim.c1173 if (thread->started) { in thread_go()
/xnu-11215/osfmk/arm/
H A Dcpu_common.c685 bool started = os_atomic_or_orig(&cpu_data_ptr->cpu_flags, StartedState, relaxed) & StartedState; in cpu_machine_init() local
688 PE_cpu_machine_init(cpu_data_ptr->cpu_id, !started); in cpu_machine_init()
/xnu-11215/iokit/IOKit/
H A DIOUserServer.h128 bool started; member
/xnu-11215/libsyscall/mach/
H A Derr_server.sub128 "(server/us) object not started",
/xnu-11215/libkern/libkern/c++/
H A DOSKext.h353 unsigned int started:1; member
/xnu-11215/doc/arm/
H A Dsme.md273 if the xnu build started inhibiting these instructions for targets that support
/xnu-11215/libkern/c++/
H A DOSKext.cpp894 fakeKext->flags.started = 1; in allocAndInitFakeKext()
3128 flags.started = 1; in setInfoDictionaryAndPath()
5187 return flags.started ? true : false; in isStarted()
6794 if (isExecutable() && !flags.started) { in load()
8463 flags.started = 1;
8595 flags.started = 0;
12763 if (!callbackKext->flags.starting && !callbackKext->flags.started) {
14352 if (!callbackKext->flags.starting && !callbackKext->flags.started) {
/xnu-11215/osfmk/bank/
H A Dbank.c1947 assert((thread == current_thread() || thread->started == 0)); in bank_swap_thread_bank_ledger()
/xnu-11215/osfmk/tests/
H A Dkernel_tests.c1131 if (thread->started == FALSE) { in wait_for_waiters()