Searched refs:task (Results 351 - 375 of 556) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A DMakefile40 task.defs \
85 task.h \
/macosx-10.9.5/xnu-2422.115.4/osfmk/pmc/
H A Dpmc.h402 * reserve the counter using that config in a given execution context (system, or 1 task, or 1 thread),
540 task_t task; // not retained member in union:pmc_reservation::__anon15486
652 * @abstract Reserve a PMC for task-wide counting.
653 * @discussion This method will attempt to reserve the given pmc for task-wide counting. The resulting reservation will only count when the task is running
657 * @param task The task for which to enable the counter.
661 kern_return_t pmc_reserve_task(pmc_t pmc, pmc_config_t config, task_t task, pmc_reservation_t *reservation);
677 * @discussion This method instructs the given reservation to start counting as soon as possible. If the reservation is for a thread (or task) other than the
678 * current thread, or for a pmc that is not accessible from the current logical core, the reservation will start counting the next time the thread (or task)
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/irs/
H A Dgetaddrinfo.c678 process_answer(isc_task_t *task, isc_event_t *event) { argument
689 REQUIRE(task != NULL);
898 isc_task_t *task; local
914 task = irs_context_gettask(irsctx);
938 0, task,
953 0, task,
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOLib.cpp882 IOReturn IOSetProcessorCacheMode( task_t task, IOVirtualAddress address, argument
888 if( task != kernel_task)
906 ret = IOUnmapPages( get_task_map(task), address, page_size );
907 ret = IOMapPages( get_task_map(task), address, ptoa_64(pagenum), page_size, cacheMode );
919 IOReturn IOFlushProcessorCache( task_t task, IOVirtualAddress address, argument
922 if( task != kernel_task)
/macosx-10.9.5/bind9-45.100/bind9/bin/named/
H A Dstatschannel.c30 #include <isc/task.h>
56 * the server task and the channel task.
61 /* Locked by server task */
1054 isc_task_t *task = NULL; local
1089 result = isc_task_create(ns_g_taskmgr, 0, &task);
1092 isc_task_setname(task, "statchannel", NULL);
1108 result = isc_httpdmgr_create(server->mctx, sock, task, client_ok,
1133 if (task != NULL)
1134 isc_task_detach(&task);
[all...]
H A Dlwdgabn.c341 process_gabn_finddone(isc_task_t *task, isc_event_t *ev) { argument
346 ns_lwdclient_log(50, "find done for task %p, client %p", task, client);
434 client->clientmgr->task,
H A Dlwdgrbn.c192 lookup_done(isc_task_t *task, isc_event_t *event) { argument
207 UNUSED(task);
417 client->options, cm->task, lookup_done,
/macosx-10.9.5/bind9-45.100/bind9/lib/export/samples/
H A Dnsprobe.c37 #include <isc/task.h>
497 request_done(isc_task_t *task, isc_event_t *event) { argument
509 REQUIRE(task == probe_task);
749 resolve_nsaddress(isc_task_t *task, isc_event_t *event) { argument
758 REQUIRE(task == probe_task);
886 resolve_ns(isc_task_t *task, isc_event_t *event) { argument
895 REQUIRE(task == probe_task);
1119 /* Create the main task */
1123 fprintf(stderr, "failed to create task: %d\n", result);
/macosx-10.9.5/bind9-45.100/bind9/bin/nsupdate/
H A Dnsupdate.c49 #include <isc/task.h>
215 recvgss(isc_task_t *task, isc_event_t *event);
766 shutdown_program(isc_task_t *task, isc_event_t *event) { argument
767 REQUIRE(task == global_task);
768 UNUSED(task);
2037 update_completed(isc_task_t *task, isc_event_t *event) { argument
2042 UNUSED(task);
2169 recvsoa(isc_task_t *task, isc_event_t *event) { argument
2188 UNUSED(task);
2616 recvgss(isc_task_t *task, isc_event_ argument
2917 getinput(isc_task_t *task, isc_event_t *event) argument
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSVxWorks/
H A DmDNSVxWorksIPv4Only.c280 // Send a "reconfigure" command to the MDNS task.
308 inMDNS->p->task = ERROR;
326 // Set up the task and wait for it to initialize. Initialization is done from the task instead of here to avoid
327 // stack space issues. Some of the initialization may require a larger stack than the current task supports.
531 check_string( inMDNS->p->task != ERROR, "mDNS task not started" );
540 // We only need to send the reschedule event when called from a task other than the mDNS task since if we are
541 // called from mDNS task, w
1365 int task; local
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/test/
H A Dunit.rb287 def run(task,type)
288 @file = File.basename(task, ".rb")
289 @real_file = task
293 puts "run #{task} #{type}"
531 return nil unless task = @tasks.shift
536 worker.run(task, type)
/macosx-10.9.5/security_ocspd-55118.2/server/
H A DocspdServer.cpp674 SecTaskRef task = SecTaskCreateWithAuditToken(NULL, auditToken); local
675 if(task != NULL) {
676 CFTypeRef appSandboxValue = SecTaskCopyValueForEntitlement(task,
681 CFTypeRef networkClientValue = SecTaskCopyValueForEntitlement(task,
693 CFRelease(task);
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dbsd_vm.c1154 fill_procregioninfo(task_t task, uint64_t arg, struct proc_regioninfo_internal *pinfo, uintptr_t *vnodeaddr, uint32_t *vid) argument
1165 task_lock(task);
1166 map = task->map;
1169 task_unlock(task);
1173 task_unlock(task);
/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DIOAudioEngineUserClient.cpp362 bool IOAudioEngineUserClient::initWithAudioEngine(IOAudioEngine *engine, task_t task, void *securityToken, UInt32 type, OSDictionary* properties) argument
366 audioDebugIOLog(3, "+ IOAudioEngineUserClient[%p]::initWithAudioEngine(%p, 0x%lx, %p, 0x%lx, %p)\n", this, engine, (long unsigned int)task, securityToken, (long unsigned int)type, properties);
374 if ( initWithTask ( task, securityToken, type, properties ) )
376 if ( engine && task )
378 clientTask = task;
452 audioDebugIOLog(3, "- IOAudioEngineUserClient[%p]::initWithAudioEngine(%p, 0x%lx, %p, 0x%lx, %p) returns %d\n", this, engine, (long unsigned int)task, securityToken, (long unsigned int)type, properties, result);
742 bool IOAudioEngineUserClient::initWithAudioEngine(IOAudioEngine *engine, task_t task, void *securityToken, UInt32 type) argument
746 audioDebugIOLog(3, "+ IOAudioEngineUserClient[%p]::initWithAudioEngine(%p, 0x%lx, %p, 0x%lx)\n", this, engine, (long unsigned int)task, securityToken, (long unsigned int)type);
748 if ( initWithTask( task, securityToken, type ) )
750 if ( engine && task )
[all...]
/macosx-10.9.5/libauto-185.5/
H A DDefinitions.h38 #include <mach/task.h>
620 // Used to read another task's memory.
624 task_t _task; // task being probed
625 auto_memory_reader_t _reader; // reader used to laod task memory
627 MemoryReader(task_t task, auto_memory_reader_t reader) : _task(task), _reader(reader) {} argument
632 // Read memory from the task into current memory.
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkdebug.c51 #include <kern/task.h>
309 /* task to string structure */
312 task_t task; /* from procs task */ member in struct:tts
1495 int tts_count; /* number of task-to-string structures */
1510 *mapcount += get_task_numacts((task_t)p->task);
1547 * and take a reference for each task associated
1560 if (p->task) {
1561 task_reference(p->task);
1562 tts_mapptr[i].task
3211 kdbg_get_task_name(char* name_buf, int len, task_t task) argument
[all...]
H A Dmach_loader.c58 #include <mach/task.h>
70 #include <kern/task.h>
309 task_t task = current_task(); local
326 * already, which include non-lazily creating the task map. So we
327 * are going to switch out the task map with one appropriate for the
336 pmap = pmap_create(get_task_ledger(task), (vm_map_size_t) 0,
415 * task, and it's correct to halt it; if it's spawn, the
416 * task is not yet running, and it makes no sense.
420 * Mark the task as halting and start the other
425 * task haltin
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dkdebug.h225 #define MACH_TASK_SUSPEND 0x0 /* Suspended a task */
226 #define MACH_TASK_RESUME 0x1 /* Resumed a task */
427 /* TODO: Split up boost and task policy? */
430 #define IMP_MSG 0x12 /* boosting message sent by donating task on donating port */
431 #define IMP_WATCHPORT 0x13 /* port marked as watchport, and boost was transferred to the watched task */
435 /* DBG_IMPORTANCE subclasses 0x20 - 0x3F reserved for task policy flavors */
447 #define IMP_MSG_SEND 0x1 /* boosting message sent by donating task on donating port */
448 #define IMP_MSG_DELV 0x2 /* boosting message delivered to task */
682 struct task;
683 extern void kdbg_get_task_name(char*, int, struct task *tas
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dgenassym.c65 #include <kern/task.h>
185 DECLARE("TASK_VTIMERS", offsetof(struct task *, vtimers));
188 DECLARE("TH_TASK", offsetof(thread_t, task));
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dipc_mig.c69 #include <kern/task.h>
501 max_trailer->msgh_sender = current_thread()->task->sec_token;
502 max_trailer->msgh_audit = current_thread()->task->audit_token;
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/
H A DIOSCSIParallelInterfaceController.cpp1002 // GetSCSIParallelTask - Gets a parallel task from the pool. [PUBLIC]
1023 // FreeSCSIParallelTask - Returns a parallel task to the pool. [PUBLIC]
1047 "this task.", returnTask ) );
1059 STATUS_LOG ( ( "FreeSCSIParallelTask: Encountered a NULL task pointer!\n" ) );
1265 // ExecuteParallelTask - Executes a parallel task. [PUBLIC]
1280 // If the controller has not suspended, send the task now.
1291 // CompleteParallelTask - Completes a parallel task. [PROTECTED]
1324 // Remove the task from the timeout list.
1346 // FindTaskForAddress - Finds a task by its address (ITLQ nexus) [PUBLIC]
1356 SCSIParallelTaskIdentifier task local
1385 SCSIParallelTaskIdentifier task = NULL; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DTimelinePanel.js983 function compareEndTime(value, task)
985 return value < task.endTime ? -1 : 1;
997 var task = tasks[taskIndex];
998 if (task.startTime > endTime)
1001 var left = Math.max(0, this._calculator.computePosition(task.startTime) + barOffset - widthAdjustment);
1002 var right = Math.min(width, this._calculator.computePosition(task.endTime) + barOffset + widthAdjustment);
H A DHeapSnapshotProxy.js104 * @param {function()} task
106 addTask: function(task)
108 this._queue.push(task);
121 console.error("Exception while running task: " + e.stack);
/macosx-10.9.5/launchd-842.92.1/src/
H A Druntime.c1190 catch_mach_exception_raise(mach_port_t exception_port __attribute__((unused)), mach_port_t thread, mach_port_t task, argument
1195 (void)os_assumes_zero(pid_for_task(task, &p4t));
1201 (void)os_assumes_zero(launchd_mport_deallocate(task));
1222 catch_mach_exception_raise_state_identity(mach_port_t exception_port __attribute__((unused)), mach_port_t thread, mach_port_t task, argument
1229 (void)os_assumes_zero(pid_for_task(task, &p4t));
1238 (void)os_assumes_zero(launchd_mport_deallocate(task));
/macosx-10.9.5/vim-53/runtime/indent/
H A Dada.vim44 let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|project\>\|then\>\|when\>\|is\>\)'
46 let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|then\>\|when\>\|is\>\)'
260 let ind = s:MainBlockIndent( ind, lnum, '\(procedure\|function\|declare\|package\|task\)\>', 'begin\>' )

Completed in 585 milliseconds

<<11121314151617181920>>