Searched refs:task (Results 126 - 150 of 556) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/osfmk/chud/i386/
H A Dchud_thread_i386.c30 #include <mach/task.h>
62 if (thread->task == kernel_task)
107 #pragma mark **** task memory read/write ****
112 task_t task,
129 if(current_task()==task) {
135 vm_map_t map = get_task_map(task);
146 task_t task,
163 if(current_task()==task) {
169 vm_map_t map = get_task_map(task);
218 task_t task,
111 chudxnu_task_read( task_t task, void *kernaddr, uint64_t usraddr, vm_size_t size) argument
145 chudxnu_task_write( task_t task, uint64_t useraddr, void *kernaddr, vm_size_t size) argument
217 do_backtrace32( task_t task, thread_t thread, x86_saved_state32_t *regs, uint64_t *frames, mach_msg_type_number_t *start_idx, mach_msg_type_number_t max_idx, boolean_t supervisor) argument
296 do_backtrace64( task_t task, thread_t thread, x86_saved_state64_t *regs, uint64_t *frames, mach_msg_type_number_t *start_idx, mach_msg_type_number_t max_idx, boolean_t supervisor) argument
480 task_t task = thread->task; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kdp/
H A Dkdp.c144 proc_name_kdp(task_t task, char *buf, int size);
150 pid_from_task(task_t task);
153 proc_uniqueid_from_task(task_t task);
1038 static int pid_from_task(task_t task) argument
1042 if (task->bsd_info)
1043 pid = proc_pid(task->bsd_info);
1049 proc_uniqueid_from_task(task_t task) argument
1053 if (task->bsd_info)
1054 uniqueid = proc_uniqueid(task->bsd_info);
1060 proc_was_throttled_from_task(task_t task) argument
1071 proc_did_throttle_from_task(task_t task) argument
1191 task_t task = TASK_NULL; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAsyncAudioDecoder.cpp64 m_queue.append(decodingTask.release()); // note that ownership of the task is effectively taken by the queue.
86 // Let the task take care of its own ownership.
120 AsyncAudioDecoder::DecodingTask* task = reinterpret_cast<AsyncAudioDecoder::DecodingTask*>(userData); local
121 ASSERT(task);
122 if (!task)
125 task->notifyComplete();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DQTMovieTask.h39 virtual void task() = 0;
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Dcache.c26 #include <isc/task.h>
89 * task/event serialization, or locked from the cache object.
101 isc_task_t *task; member in struct:cache_cleaner
105 isc_event_t *resched_event; /*% Sent by cleaner task to
155 cleaning_timer_action(isc_task_t *task, isc_event_t *event);
158 incremental_cleaning_action(isc_task_t *task, isc_event_t *event);
161 cleaner_shutdown_action(isc_task_t *task, isc_event_t *event);
164 overmem_cleaning_action(isc_task_t *task, isc_event_t *event);
347 if (cache->cleaner.task != NULL)
348 isc_task_detach(&cache->cleaner.task);
775 cleaning_timer_action(isc_task_t *task, isc_event_t *event) argument
798 overmem_cleaning_action(isc_task_t *task, isc_event_t *event) argument
843 incremental_cleaning_action(isc_task_t *task, isc_event_t *event) argument
1088 cleaner_shutdown_action(isc_task_t *task, isc_event_t *event) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/include/dns/
H A Dlookup.h77 dns_view_t *view, unsigned int options, isc_task_t *task,
90 *\li 'task' is a valid task.
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/tests/
H A Disctest.h31 #include <isc/task.h>
/macosx-10.9.5/dyld-239.4/src/
H A DdyldLibSystemInterface.h71 kern_return_t (*vm_alloc)(vm_map_t task, vm_address_t* addr, vm_size_t size, int flags);
/macosx-10.9.5/xnu-2422.115.4/libsyscall/mach/
H A Dmach_vm.c90 mach_port_name_t task,
98 rv = _kernelrpc_mach_vm_protect_trap(task, address, size, set_maximum,
102 rv = _kernelrpc_mach_vm_protect(task, address, size,
110 mach_port_name_t task,
119 rv = mach_vm_allocate(task, &mach_addr, size, flags);
131 mach_port_name_t task,
137 rv = mach_vm_deallocate(task, address, size);
144 mach_port_name_t task,
152 rv = mach_vm_protect(task, address, size, set_maximum, new_protection);
234 // The target argument is the remote task fro
89 mach_vm_protect( mach_port_name_t task, mach_vm_address_t address, mach_vm_size_t size, boolean_t set_maximum, vm_prot_t new_protection) argument
109 vm_allocate( mach_port_name_t task, vm_address_t *address, vm_size_t size, int flags) argument
130 vm_deallocate( mach_port_name_t task, vm_address_t address, vm_size_t size) argument
143 vm_protect( mach_port_name_t task, vm_address_t address, vm_size_t size, boolean_t set_maximum, vm_prot_t new_protection) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Daffinity.c30 #include <kern/task.h>
37 * shared by a task family, this controls affinity tag lookup and
44 * - The task lock protects the creation of an affinity namespace.
46 * and its thread membership. This includes its destruction when the task
52 * The lock ordering is: task lock, thread mutex, namespace mutex, thread lock.
127 task_lock(thread->task);
128 aspc = thread->task->affinity_space;
130 task_unlock(thread->task);
134 task_lock(thread->task);
135 if (thread->task
239 task_affinity_deallocate(task_t task) argument
263 task_affinity_info( task_t task, task_info_t task_info_out, mach_msg_type_number_t *task_info_count) argument
[all...]
H A Dpage_decrypt.c32 #include <kern/task.h>
H A Dstack.c86 task_t task; local
92 (task = thread->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
100 task_t task; local
106 (task = thread->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
118 task_t task; local
121 if ((task
[all...]
H A Dipc_misc.c156 * Parameters: task The target task
162 fileport_invoke(task_t task, mach_port_name_t name, argument
170 kr = ipc_object_copyin(task->itk_space, name,
186 * Description: Invoke the action function on every fileport in the task.
194 * Parameters: task The target task
199 fileport_walk(task_t task, argument
217 kr = mach_port_names(task->itk_space,
233 if (fileport_invoke(task, name
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/dst/
H A Dgsstest.c32 #include <isc/task.h>
93 static void initctx1(isc_task_t *task, isc_event_t *event);
94 static void sendquery(isc_task_t *task, isc_event_t *event);
98 console(isc_task_t *task, isc_event_t *event) argument
119 isc_task_send(task, &ev);
126 isc_task_send(task, &ev);
135 recvresponse(isc_task_t *task, isc_event_t *event) { argument
146 UNUSED(task);
189 isc_task_send(task, &event);
195 sendquery(isc_task_t *task, isc_event_ argument
272 initctx2(isc_task_t *task, isc_event_t *event) argument
352 initctx1(isc_task_t *task, isc_event_t *event) argument
452 isc_task_t *task; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/tkey/
H A Dkeycreate.c33 #include <isc/task.h>
72 recvquery(isc_task_t *task, isc_event_t *event) { argument
80 UNUSED(task);
132 sendquery(isc_task_t *task, isc_event_t *event) { argument
192 0, initialkey, TIMEOUT, task,
213 isc_task_t *task; local
246 task = NULL;
247 RUNCHECK(isc_task_create(taskmgr, 0, &task));
285 RUNCHECK(isc_app_onrun(mctx, task, sendquery, NULL));
304 isc_task_shutdown(task);
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/misc/
H A Dapr_thread_pool.c153 apr_thread_pool_task_t *task = NULL; local
158 task = APR_RING_FIRST(me->scheduled_tasks);
159 assert(task != NULL);
160 assert(task !=
164 if (task->dispatch.time <= apr_time_now()) {
166 APR_RING_REMOVE(task, link);
167 return task;
170 /* check for normal tasks if we're not returning a scheduled task */
175 task = APR_RING_FIRST(me->tasks);
176 assert(task !
194 apr_thread_pool_task_t *task = NULL; local
241 apr_thread_pool_task_t *task = NULL; local
936 apr_thread_pool_task_t *task; local
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/misc/
H A Dapr_thread_pool.c153 apr_thread_pool_task_t *task = NULL; local
158 task = APR_RING_FIRST(me->scheduled_tasks);
159 assert(task != NULL);
160 assert(task !=
164 if (task->dispatch.time <= apr_time_now()) {
166 APR_RING_REMOVE(task, link);
167 return task;
170 /* check for normal tasks if we're not returning a scheduled task */
175 task = APR_RING_FIRST(me->tasks);
176 assert(task !
194 apr_thread_pool_task_t *task = NULL; local
242 apr_thread_pool_task_t *task = NULL; local
932 apr_thread_pool_task_t *task; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/tools/lldbmacros/
H A Dprocess.py13 """ returns a string name, pid, parent and task for a proc_t. Decodes cred, flag and p_stat fields.
21 "task:{p.task: <#020x} p_stat:{p.p_stat: <6d} parent pid: {p.p_ppid: <6d}\n"
104 t = Cast(proc.task, 'task *')
108 @lldb_type_summary(['task', 'task_t'])
109 @header("{0: <20s} {1: <20s} {2: <20s} {3: >5s} {4: <5s}".format("task","vm_map", "ipc_space", "#acts", "flags"))
110 def GetTaskSummary(task):
111 """ Summarizes the important fields in task structure.
112 params: task
[all...]
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFWRingBufferQ.h48 static IOFWRingBufferQ * withAddressRange( mach_vm_address_t address, mach_vm_size_t length, IOOptionBits options, task_t task );
50 virtual bool initQ( mach_vm_address_t address, mach_vm_size_t length, IOOptionBits options, task_t task );
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DWorkerPlatformFileWriterClient.cpp66 void WorkerPlatformFileWriterClient::postTaskToWorkerThreadIfNeeded(PassOwnPtr<ScriptExecutionContext::Task> task) argument
72 m_context->thread()->workerLoaderProxy().postTaskForModeToWorkerContext(task, m_mode);
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DWorkerRunLoop.h57 // Waits for a single task and returns.
74 static PassOwnPtr<Task> create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
80 Task(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
/macosx-10.9.5/libauto-185.5/
H A DInUseEnumerator.h43 task_t _task; // task being probed
46 vm_address_t _zone_address; // task address of zone being probed
47 auto_memory_reader_t _reader; // reader used to laod task memory
56 InUseEnumerator(task_t task, void *context, unsigned type_mask, vm_address_t zone_address, auto_memory_reader_t reader, auto_vm_range_recorder_t recorder) argument
57 : _task(task)
70 // Read memory from the task into current memory.
107 // Scan through a task's auto zone looking for
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Dpackage_task.rb33 # zip files and tar/gzipped packages can be produced by this task.
73 # Create a Gem Package task library. Automatically define the gem if a
75 # to define the task.
103 task :package => [:gem]
109 task :gem => [gem_path]
/macosx-10.9.5/xnu-2422.115.4/tools/tests/unit_tests/guarded_fd_tests_11746236_src/
H A Dguarded_test_framework.c90 mach_port_t task,
136 mach_port_t task,
166 mach_port_t task = mach_task_self(); local
185 if ((kr = mach_port_allocate(task, MACH_PORT_RIGHT_RECEIVE, &exc_port)) != KERN_SUCCESS) {
190 if ((kr = mach_port_insert_right(task, exc_port,
197 if ((kr = task_get_exception_ports(task, EXC_MASK_GUARD, &mask,
224 if ((kr = task_set_exception_ports(task, EXC_MASK_GUARD, exc_port,
244 if ((kr = task_set_exception_ports(task, EXC_MASK_GUARD, handler,
86 catch_mach_exception_raise( mach_port_t exception_port, mach_port_t thread, mach_port_t task, exception_type_t exception, mach_exception_data_t code, mach_msg_type_number_t codeCnt, int *flavor, thread_state_t old_state, mach_msg_type_number_t old_stateCnt, thread_state_t new_state, mach_msg_type_number_t *new_stateCnt ) argument
132 catch_mach_exception_raise_state_identity( mach_port_t exception_port, mach_port_t thread, mach_port_t task, exception_type_t exception, mach_exception_data_t code, mach_msg_type_number_t codeCnt ) argument
/macosx-10.9.5/xnu-2422.115.4/tools/tests/unit_tests/guarded_mach_port_tests_11178535_src/
H A Dguarded_test_framework.c70 mach_port_t task,
116 mach_port_t task,
146 mach_port_t task = mach_task_self(); local
165 if ((kr = mach_port_allocate(task, MACH_PORT_RIGHT_RECEIVE, &exc_port)) != KERN_SUCCESS) {
170 if ((kr = mach_port_insert_right(task, exc_port,
177 if ((kr = task_get_exception_ports(task, EXC_MASK_GUARD, &mask,
204 if ((kr = task_set_exception_ports(task, EXC_MASK_GUARD, exc_port,
224 if ((kr = task_set_exception_ports(task, EXC_MASK_GUARD, handler,
66 catch_mach_exception_raise( mach_port_t exception_port, mach_port_t thread, mach_port_t task, exception_type_t exception, mach_exception_data_t code, mach_msg_type_number_t codeCnt, int *flavor, thread_state_t old_state, mach_msg_type_number_t old_stateCnt, thread_state_t new_state, mach_msg_type_number_t *new_stateCnt ) argument
112 catch_mach_exception_raise_state_identity( mach_port_t exception_port, mach_port_t thread, mach_port_t task, exception_type_t exception, mach_exception_data_t code, mach_msg_type_number_t codeCnt ) argument

Completed in 362 milliseconds

1234567891011>>