Searched defs:task (Results 226 - 250 of 399) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerMessagingProxy.cpp150 bool WorkerMessagingProxy::postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask> task) argument
156 m_workerThread->postTask(task);
160 void WorkerMessagingProxy::postTaskToLoader(PassOwnPtr<ExecutionContextTask> task) argument
164 m_executionContext->postTask(task);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DRecordingImageBufferSurfaceTest.cpp211 // for the current thread. The Mock thread is capable of queuing a single non-delayed task
212 // and registering a single task observer. The run loop exits immediately after running
213 // the single task.
237 virtual void postTask(Task* task) argument
240 m_task = task;
/external/chromium_org/third_party/WebKit/Source/platform/scheduler/
H A DScheduler.cpp79 const Scheduler::Task& task, const TraceLocation& location, const char* traceName)
80 : m_task(task, location, traceName)
150 void Scheduler::postHighPriorityTaskInternal(const TraceLocation& location, const Task& task, const char* traceName) argument
154 m_pendingHighPriorityTasks.append(TracedTask(task, location, traceName));
160 void Scheduler::postTask(const TraceLocation& location, const Task& task) argument
162 m_mainThread->postTask(new MainThreadPendingTaskRunner(task, location, "Scheduler::MainThreadTask"));
165 void Scheduler::postInputTask(const TraceLocation& location, const Task& task) argument
167 postHighPriorityTaskInternal(location, task, "Scheduler::InputTask");
175 void Scheduler::postCompositorTask(const TraceLocation& location, const Task& task) argument
177 postHighPriorityTaskInternal(location, task, "Schedule
78 MainThreadPendingTaskRunner( const Scheduler::Task& task, const TraceLocation& location, const char* traceName) argument
180 postIpcTask(const TraceLocation& location, const Task& task) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebEmbeddedWorkerImpl.cpp122 virtual void postTaskToLoader(PassOwnPtr<ExecutionContextTask> task) OVERRIDE
124 toWebLocalFrameImpl(m_embeddedWorker.m_mainFrame)->frame()->document()->postTask(task); variable
127 virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask> task) OVERRIDE
131 m_embeddedWorker.m_workerThread->postTask(task);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast_priv.h53 #define BEGIN_JIT_CALL(state, task) \
57 jit_task = task; \
122 /** A task object for each rasterization thread */
134 lp_rast_shade_quads_mask(struct lp_rasterizer_task *task,
149 lp_rast_get_depth_block_pointer(struct lp_rasterizer_task *task, argument
152 const struct lp_scene *scene = task->scene;
182 lp_rast_get_color_tile_pointer(struct lp_rasterizer_task *task, argument
185 const struct lp_scene *scene = task->scene;
187 assert(task->x < scene->tiles_x * TILE_SIZE);
188 assert(task
221 lp_rast_get_color_block_pointer(struct lp_rasterizer_task *task, unsigned buf, unsigned x, unsigned y) argument
253 lp_rast_shade_quads_all( struct lp_rasterizer_task *task, const struct lp_rast_shader_inputs *inputs, unsigned x, unsigned y ) argument
[all...]
H A Dlp_rast_tri_tmp.h43 TAG(do_block_4)(struct lp_rasterizer_task *task, argument
61 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask);
69 TAG(do_block_16)(struct lp_rasterizer_task *task, argument
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
145 block_full_4(task, tri, px, py);
155 TAG(lp_rast_triangle)(struct lp_rasterizer_task *task, argument
161 const int x = task->x, y = task->y;
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
247 block_full_16(task, tr
257 TRI_16(struct lp_rasterizer_task *task, const union lp_rast_cmd_arg arg) argument
330 TRI_4(struct lp_rasterizer_task *task, const union lp_rast_cmd_arg arg) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-port.cc50 # include <mach/task.h>
85 const task_t task = mach_task_self(); local
88 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
92 vm_deallocate(task,
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dlibc_override_osx.h139 kern_return_t mi_enumerator(task_t task, void *, argument
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dlibc_override_osx.h139 kern_return_t mi_enumerator(task_t task, void *, argument
/external/chromium_org/ui/base/test/
H A Dui_controls_internal_win.cc20 // appropriate event is received the task is notified.
23 InputDispatcher(const base::Closure& task, WPARAM message_waiting_for);
30 // an event that notifies the task.
38 // Notifies the task and release this (which should delete it).
41 // The task we notify.
108 InputDispatcher::InputDispatcher(const base::Closure& task, argument
110 : task_(task), message_waiting_for_(message_waiting_for) {
174 const base::Closure& task) {
185 !task.is_null() ? new InputDispatcher(task, WM_KEYU
169 SendKeyPressImpl(HWND window, ui::KeyboardCode key, bool control, bool shift, bool alt, const base::Closure& task) argument
258 SendMouseMoveImpl(long screen_x, long screen_y, const base::Closure& task) argument
294 SendMouseEventsImpl(MouseButton type, int state, const base::Closure& task) argument
[all...]
/external/chromium_org/ui/file_manager/image_loader/
H A Dimage_loader_client.js104 // This task has been canceled, but was already fetched, so it's result
109 var task = this.tasks_[message.taskId];
111 // Check if the task is still valid.
112 if (task.isValid())
113 task.accept(message);
128 * @return {?number} Remote task id or null if loaded from cache.
142 var task = this.tasks_[taskKey];
143 if (!task.isValid()) {
144 // Cancel this task since it is not valid anymore.
179 var task
[all...]
/external/chromium_org/win8/metro_driver/
H A Dprint_handler.cc320 wingfx::Printing::IPrintTask* task,
319 OnCompleted( wingfx::Printing::IPrintTask* task, wingfx::Printing::IPrintTaskCompletedEventArgs* args) argument
/external/compiler-rt/lib/asan/
H A Dasan_malloc_mac.cc262 kern_return_t mi_enumerator(task_t task, void *, argument
/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java113 Element (final Task task, final IProperties settings) argument
115 if (task == null)
116 throw new IllegalArgumentException ("null input: task");
120 m_task = task;
167 Element_HTML (final Task task, final IProperties settings) argument
169 super (task, settings);
186 Element_TXT (final Task task, final IProperties settings) argument
188 super (task, settings);
205 Element_LCOV (final Task task, final IProperties settings) argument
207 super (task, setting
223 Element_XML(final Task task, final IProperties settings) argument
236 ReportCfg(final Project project, final Task task) argument
[all...]
/external/gtest/src/
H A Dgtest-port.cc51 # include <mach/task.h>
91 const task_t task = mach_task_self(); local
94 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
98 vm_deallocate(task,
/external/jmdns/src/javax/jmdns/impl/
H A DDNSStatefulObject.java144 public void associateWithTask(DNSTask task, DNSState state) { argument
149 this.setTask(task);
161 public void removeAssociationWithTask(DNSTask task) { argument
162 if (this._task == task) {
165 if (this._task == task) {
178 public boolean isAssociatedWithTask(DNSTask task, DNSState state) { argument
181 return this._task == task && this._state == state;
187 protected void setTask(DNSTask task) { argument
188 this._task = task;
216 public boolean advanceState(DNSTask task) { argument
432 associateWithTask(DNSTask task, DNSState state) argument
440 removeAssociationWithTask(DNSTask task) argument
451 isAssociatedWithTask(DNSTask task, DNSState state) argument
461 advanceState(DNSTask task) argument
[all...]
H A DDNSTaskStarter.java24 * This class is used by JmDNS to start the various task required to run the DNS discovery. This interface is only there in order to support MANET modifications.
154 // This is needed because in some case we cancel the timers before all the task have finished running and in some case they will try to reschedule
206 public synchronized void schedule(TimerTask task, long delay) { argument
208 super.schedule(task, delay);
216 public synchronized void schedule(TimerTask task, Date time) { argument
218 super.schedule(task, time);
226 public synchronized void schedule(TimerTask task, long delay, long period) { argument
228 super.schedule(task, delay, period);
236 public synchronized void schedule(TimerTask task, Date firstTime, long period) { argument
238 super.schedule(task, firstTim
246 scheduleAtFixedRate(TimerTask task, long delay, long period) argument
256 scheduleAtFixedRate(TimerTask task, Date firstTime, long period) argument
[all...]
H A DHostInfo.java295 public boolean advanceState(DNSTask task) { argument
296 return this._state.advanceState(task);
303 public void removeAssociationWithTask(DNSTask task) { argument
304 this._state.removeAssociationWithTask(task);
319 public void associateWithTask(DNSTask task, DNSState state) { argument
320 this._state.associateWithTask(task, state);
327 public boolean isAssociatedWithTask(DNSTask task, DNSState state) { argument
328 return this._state.isAssociatedWithTask(task, state);
/external/libcxxabi/src/Unwind/
H A Dlibunwind.cpp105 static bool is64bit(task_t task) { argument
109 /// Create an address_space object for use in examining another task.
110 _LIBUNWIND_EXPORT unw_addr_space_t unw_create_addr_space_for_task(task_t task) { argument
112 if (is64bit(task)) {
113 unw_addr_space_x86_64 *as = new unw_addr_space_x86_64(task);
114 as->taskPort = task;
118 unw_addr_space_i386 *as = new unw_addr_space_i386(task);
119 as->taskPort = task;
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachException.cpp31 mach_port_t task,
57 mach_port_t task,
324 MachException::Message::CatchExceptionRaise(task_t task) argument
330 state.task_port = task;
374 // This is our task, so we can update the signal to send to it
432 err.LogThreaded("::mach_msg() - failed (task)");
438 err.LogThreaded("::mach_msg() - failed (child of task)");
496 MachException::PortInfo::Save (task_t task) argument
498 DNBLogThreadedIf(LOG_EXCEPTIONS | LOG_VERBOSE, "MachException::PortInfo::Save ( task = 0x%4.4x )", task);
528 Restore(task_t task) argument
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc50 # include <mach/task.h>
85 const task_t task = mach_task_self(); local
88 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
92 vm_deallocate(task,
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_priv.h53 #define BEGIN_JIT_CALL(state, task) \
57 jit_task = task; \
122 /** A task object for each rasterization thread */
134 lp_rast_shade_quads_mask(struct lp_rasterizer_task *task,
149 lp_rast_get_depth_block_pointer(struct lp_rasterizer_task *task, argument
152 const struct lp_scene *scene = task->scene;
182 lp_rast_get_color_tile_pointer(struct lp_rasterizer_task *task, argument
185 const struct lp_scene *scene = task->scene;
187 assert(task->x < scene->tiles_x * TILE_SIZE);
188 assert(task
221 lp_rast_get_color_block_pointer(struct lp_rasterizer_task *task, unsigned buf, unsigned x, unsigned y) argument
253 lp_rast_shade_quads_all( struct lp_rasterizer_task *task, const struct lp_rast_shader_inputs *inputs, unsigned x, unsigned y ) argument
[all...]
H A Dlp_rast_tri_tmp.h43 TAG(do_block_4)(struct lp_rasterizer_task *task, argument
61 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask);
69 TAG(do_block_16)(struct lp_rasterizer_task *task, argument
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
145 block_full_4(task, tri, px, py);
155 TAG(lp_rast_triangle)(struct lp_rasterizer_task *task, argument
161 const int x = task->x, y = task->y;
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
247 block_full_16(task, tr
257 TRI_16(struct lp_rasterizer_task *task, const union lp_rast_cmd_arg arg) argument
330 TRI_4(struct lp_rasterizer_task *task, const union lp_rast_cmd_arg arg) argument
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-port.cc50 # include <mach/task.h>
85 const task_t task = mach_task_self(); local
88 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
92 vm_deallocate(task,
/external/oprofile/module/x86/
H A Dop_syscalls.c69 static int oprof_output_maps(struct task_struct * task) argument
80 if (!(mm = task->mm))

Completed in 9818 milliseconds

1234567891011>>