Searched refs:task (Results 226 - 250 of 688) sorted by relevance

1234567891011>>

/external/chromium_org/gpu/command_buffer/service/
H A Dasync_pixel_transfer_manager_idle.cc131 (*iter).task.Run();
231 const base::Closure& task)
234 task(task) {
246 // Stop when we reach a pixel transfer task.
250 tasks.front().task.Run();
294 // First task should always be a pixel transfer task.
296 shared_state_.tasks.front().task.Run();
310 const Task& task local
228 Task( uint64 transfer_id, AsyncPixelTransferDelegate* delegate, const base::Closure& task) argument
[all...]
H A Dasync_pixel_transfer_manager_idle.h33 const base::Closure& task);
36 // This is non-zero if pixel transfer task.
41 base::Closure task; member in struct:gpu::AsyncPixelTransferManagerIdle::Task
/external/chromium_org/mojo/system/
H A Dtest_utils.h26 // Posts the given task (to the given task runner) and waits for it to complete.
31 const base::Closure& task);
/external/chromium_org/ui/views_content_client/
H A Dviews_content_client_main_parts_desktop_aura.cc44 views_content_client()->task().Run(browser_context(), NULL);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-commons-logging.jar ... Object realObj org.apache.tools.ant.Task task Object real org.apache.commons.logging ...
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractScheduledService.java36 * the "running" state need to perform a periodic task. Subclasses can implement {@link #startUp},
43 * it will cancel the periodic task (but not interrupt it) and wait for it to stop before running
95 * task.
108 * Returns a {@link Scheduler} that schedules the task using the
121 Runnable task) {
122 return executor.scheduleWithFixedDelay(task, initialDelay, delay, unit);
128 * Returns a {@link Scheduler} that schedules the task using the
132 * @param period the period between successive executions of the task
140 Runnable task) {
141 return executor.scheduleAtFixedRate(task, initialDela
[all...]
/external/lldb/examples/darwin/heap_find/heap/
H A Dheap_find.cpp107 task_t task,
113 task_t task,
122 task_t task,
130 task_t task,
140 range_info_callback (task_t task,
161 typedef void range_callback_t (task_t task, void *baton, unsigned type, uint64_t ptr_addr, uint64_t ptr_size);
589 task_peek (task_t task, vm_address_t remote_address, vm_size_t size, void **local_memory) argument
623 task_t task = mach_task_self(); local
634 const kern_return_t err = mach_vm_region_recurse (task,
648 range_info_callback (task,
665 dump_malloc_block_callback(task_t task, void *baton, unsigned type, uint64_t ptr_addr, uint64_t ptr_size) argument
671 ranges_callback(task_t task, void *baton, unsigned type, vm_range_t *ptrs, unsigned count) argument
695 range_info_callback(task_t task, void *baton, unsigned type, uint64_t ptr_addr, uint64_t ptr_size) argument
860 task_t task = mach_task_self(); local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-sched.c133 * Track the current task - that way we can know whether there's any
134 * weird events, such as a task being switched away that is not current.
243 get_new_event(struct task_desc *task, u64 timestamp) argument
246 unsigned long idx = task->nr_events;
252 task->nr_events++;
253 size = sizeof(struct sched_atom *) * task->nr_events;
254 task->atoms = realloc(task->atoms, size);
255 BUG_ON(!task->atoms);
257 task
262 last_event(struct task_desc *task) argument
270 add_sched_event_run(struct perf_sched *sched, struct task_desc *task, u64 timestamp, u64 duration) argument
293 add_sched_event_wakeup(struct perf_sched *sched, struct task_desc *task, u64 timestamp, struct task_desc *wakee) argument
320 add_sched_event_sleep(struct perf_sched *sched, struct task_desc *task, u64 timestamp, u64 task_state __maybe_unused) argument
333 struct task_desc *task; local
367 struct task_desc *task; local
463 struct task_desc *task; member in struct:sched_thread_parms
519 struct task_desc *task; local
550 struct task_desc *task; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/
H A Dapmtest.m1 function apmtest(task, testname, filepath, casenumber, legacy)
43 if nargin < 1 || isempty(task)
44 task = 'test';
47 if ~strcmp(task, 'test') && ~strcmp(task, 'list') && ~strcmp(task, 'show')
48 error(['TASK ' task ' is not recognized']);
51 if casenumber == 0 && strcmp(task, 'show')
52 error(['CASENUMBER must be specified for TASK ' task]);
147 progname, opt, simulateMode, nErr, nCases, task, casenumbe
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dapmtest.m1 function apmtest(task, testname, filepath, casenumber, legacy)
43 if nargin < 1 || isempty(task)
44 task = 'test';
47 if ~strcmp(task, 'test') && ~strcmp(task, 'list') && ~strcmp(task, 'show')
48 error(['TASK ' task ' is not recognized']);
51 if casenumber == 0 && strcmp(task, 'show')
52 error(['CASENUMBER must be specified for TASK ' task]);
147 progname, opt, simulateMode, nErr, nCases, task, casenumbe
[all...]
/external/chromium_org/android_webview/browser/
H A Ddeferred_gpu_command_service.h39 virtual void ScheduleTask(const base::Closure& task) OVERRIDE;
40 virtual void ScheduleIdleWork(const base::Closure& task) OVERRIDE;
/external/chromium_org/base/
H A Dsequenced_task_runner.h16 // as guarantees on when tasks are in sequence, i.e. one task finishes
29 // may expose task-running methods which are themselves callable from
30 // within tasks. A non-nestable task is one that is guaranteed to not
31 // be run from within an already-running task. Conversely, a nestable
32 // task (the default) is a task that can be run from within an
33 // already-running task.
47 // * T1 doesn't call any task-running methods.
53 // - If T2 runs nested within T1 via a call to the task-running
65 // question don't call any task
[all...]
/external/chromium_org/chrome/browser/sync/glue/
H A Dautofill_data_type_controller.cc55 const base::Closure& task) {
57 return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
53 PostTaskOnBackendThread( const tracked_objects::Location& from_here, const base::Closure& task) argument
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_operation_runner.h32 // Represents an operation task (which usually wraps one FileSystemOperation).
50 static void CancelAndDelete(Task* task);
63 // Runs the given |task| if no sync operation is running on any of
67 // just queues up the |task|.
69 void PostOperationTask(scoped_ptr<Task> task);
71 // Runs a next runnable task (if there's any).
75 // writable and may start a next runnable task.
/external/chromium_org/media/cast/
H A Dcast_environment.h42 // They return true iff the thread existed and the task was posted. Note that
43 // even if the task is posted, there's no guarantee that it will run, since
47 const base::Closure& task);
51 const base::Closure& task,
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Drun_loop.cc124 PendingTask task = delayed_tasks_.top(); local
126 task.task.Run();
138 void RunLoop::PostDelayedTask(const Closure& task, MojoTimeTicks delay) { argument
141 delayed_tasks_.push(PendingTask(task, run_time, next_sequence_number_++));
258 RunLoop::PendingTask::PendingTask(const Closure& task, argument
261 : task(task), run_time(run_time), sequence_number(sequence_number) {
270 // want the soonest eligible task to be at the head of the queue, so
/external/chromium_org/remoting/base/
H A Dplugin_thread_task_runner.h51 const base::Closure& task,
55 const base::Closure& task,
74 // Processes the incoming task queue: runs all non delayed tasks and posts all
91 // Used by the shutdown loop to block the thread until there is a task ready
120 // True if the shutdown task loop was been stopped.
/external/guava/guava-tests/test/com/google/common/eventbus/
H A DAsyncEventBusTest.java53 // Now we find the task in our Executor and explicitly activate it.
55 assertEquals("One event dispatch task should be queued.", 1, tasks.size());
74 public void execute(Runnable task) { argument
75 tasks.add(task);
/external/chromium_org/base/message_loop/
H A Dmessage_loop.cc90 // time for every task that is added to the MessageLoop incoming queue.
93 // The Android UI message loop needs to get notified each time a task is added
166 // Clean up any unprocessed tasks, but take care: deleting a task could
168 // limit on the number of times we will allow a deleted task to generate more
170 // we end up hitting the loop limit, then it is probably due to one task that
278 const Closure& task) {
279 DCHECK(!task.is_null()) << from_here.ToString();
280 incoming_task_queue_->AddToIncomingQueue(from_here, task, TimeDelta(), true);
285 const Closure& task,
287 DCHECK(!task
276 PostTask( const tracked_objects::Location& from_here, const Closure& task) argument
283 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
291 PostNonNestableTask( const tracked_objects::Location& from_here, const Closure& task) argument
298 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
[all...]
/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/chromium_org/tools/memory_inspector/memory_inspector/frontends/
H A Dbackground_tasks.py12 task to check for its progress.
14 From a technical viewpoint, each background task is just a python subprocess
33 task = BackgroundTask(
42 task.start()
43 _tasks[task.pid] = task
44 return task.pid
60 """Entry point for the background periodic tracer task."""
/external/emma/ant/ant14/com/vladium/emma/instr/
H A DFilterCfg.java38 public filterElement (final Task task) argument
40 super (task);
118 public FilterCfg (final Task task) argument
120 if (task == null) throw new IllegalArgumentException ("null input: task");
122 m_task = task;
/external/chromium_org/cc/test/
H A Dordered_simple_task_runner.cc18 #define TRACE_TASK(function, task) \
20 "cc", function, TRACE_EVENT_SCOPE_THREAD, "task", task.AsValue());
22 #define TRACE_TASK_RUN(function, tag, task)
34 const base::Closure& task,
38 : base::TestPendingTask(location, task, post_time, delay, nestability),
98 const base::Closure& task,
102 from_here, task, now_src_->Now(), delay, base::TestPendingTask::NESTABLE);
111 const base::Closure& task,
115 task,
32 TestOrderablePendingTask( const tracked_objects::Location& location, const base::Closure& task, base::TimeTicks post_time, base::TimeDelta delay, TestNestability nestability) argument
96 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
109 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
[all...]
/external/ltrace/sysdeps/linux-gnu/
H A Dtrace.c216 task_stopped(struct process *task, void *data) argument
218 enum process_status st = process_status(task->pid);
222 /* If the task is already stopped, don't worry about it.
242 task_blocked(struct process *task, void *data) argument
245 struct pid_task *task_info = get_task_info(pids, task->pid);
250 return task_stopped(task, NULL);
256 task_vforked(struct process *task, void *data) argument
258 if (task->event_handler != NULL
259 && task->event_handler->on_event == &process_vfork_on_event)
265 is_vfork_parent(struct process *task) argument
271 send_sigstop(struct process *task, void *data) argument
393 untrace_task(struct process *task, void *data) argument
401 remove_task(struct process *task, void *data) argument
721 struct process *task = event->proc; local
948 struct process *task = event->proc; local
[all...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfile_tasks_unittest.cc36 // Registers the default task preferences. Used for testing
47 // Updates the default task preferences per the given dictionary values. Used
66 "task title",
74 EXPECT_EQ("task title", full_descriptor.task_title());
84 "task title",
92 EXPECT_EQ("task title", full_descriptor.task_title());
113 TaskDescriptor task; local
114 EXPECT_TRUE(ParseTaskID("app-id|file|action-id", &task));
115 EXPECT_EQ("app-id", task.app_id);
116 EXPECT_EQ(TASK_TYPE_FILE_BROWSER_HANDLER, task
121 TaskDescriptor task; local
129 TaskDescriptor task; local
137 TaskDescriptor task; local
147 TaskDescriptor task; local
157 TaskDescriptor task; local
162 TaskDescriptor task; local
[all...]

Completed in 7235 milliseconds

1234567891011>>