HomeSort by relevance Sort by last modified time
    Searched full:task (Results 101 - 125 of 696) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_systhread_c.h 47 #define Task TaskPPC
59 #define SYS_ThreadHandle struct Task *
SDL_systhread.c 36 struct Task *wait;
55 struct Task *Father;
74 struct Task *Father;
115 thread->handle=(struct Task *)CreateNewProcTags(NP_Output,Output(),
150 Signal((struct Task *)thread->handle,SIGBREAKF_CTRL_C);
  /external/webkit/WebCore/storage/
DatabaseThread.cpp 98 while (OwnPtr<DatabaseTask> task = m_queue.waitForMessage()) {
99 task->performTask();
149 void DatabaseThread::scheduleTask(PassOwnPtr<DatabaseTask> task)
151 m_queue.append(task);
154 void DatabaseThread::scheduleImmediateTask(PassOwnPtr<DatabaseTask> task)
156 m_queue.prepend(task);
162 bool operator()(DatabaseTask* task) const { return task->database() == m_database; }
DatabaseTask.h 51 // Has to be passed into DatabaseTask::create to be associated with the task.
56 // Called from main thread to wait until task is completed.
59 // Called by the task.
129 // Transaction task is never synchronous, so no 'synchronizer' parameter.
  /external/kernel-headers/original/linux/
mutex.h 23 * - only one task can hold the mutex at a time
29 * - task may not exit with mutex held
44 * - detects multi-task circular deadlocks and prints out all affected
64 * which resides on the blocked task's kernel stack:
68 struct task_struct *task; member in struct:mutex_waiter
taskstats.h 1 /* taskstats.h - exporting per-task statistics
18 /* Format for per-task data returned to userland when
19 * - a task exits
20 * - listener requests stats for a task
62 /* Following four fields atomically updated using task->delays->lock */
  /packages/apps/Gallery3D/src/com/cooliris/media/
BaseCancelable.java 30 * The state of the task, possible transitions are:
38 * When the task stop, it must be end with one of the following states:
57 * Frees the result (which is not null) when the task has been canceled.
121 * Requests the task to be canceled.
123 * @return true if the task is running and has not been canceled; false
  /frameworks/base/docs/html/guide/topics/manifest/
activity-element.jd 57 <dd>Whether or not the activity can move from the task that started it to
58 the task it has an affinity for when that task is next brought to the
60 must remain with the task where it started.
70 Normally when an activity is started, it's associated with the task of
72 You can use this attribute to force it to be re-parented to the task it
73 has an affinity for when its current task is no longer displayed.
75 to the main task associated with that application.
82 task. If it's reparented to the browser task, it will be shown when the
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
FutureTask.java 27 * customized task classes.
41 * @param callable the callable task
55 * @param runnable the runnable task
94 * Protected method invoked when this task transitions to state
99 * implementation of this method to determine whether this task
163 /** State value representing that task is ready to run */
165 /** State value representing that task is running */
167 /** State value representing that task ran */
169 /** State value representing that task was cancelled */
180 * The thread running task. When nulled after set/cancel, thi
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/instr/
FilterCfg.java 18 import org.apache.tools.ant.Task;
38 public filterElement (final Task task)
40 super (task);
118 public FilterCfg (final Task task)
120 if (task == null) throw new IllegalArgumentException ("null input: task");
122 m_task = task;
189 private final Task m_task; // never nul
    [all...]
  /external/jdiff/src/jdiff/
JDiffAntTask.java 21 * An Ant task to produce a simple JDiff report. More complex reports still
22 * need parameters that are controlled by the Ant Javadoc task.
97 * Convenient method to create a Javadoc task, configure it and run it
134 * Convenient method to create a Javadoc task, configure it and run it
199 * simple ones used here, then use the Javadoc Ant task directly, and
225 * Create a fresh new Javadoc task object and initialize it.
228 * @return The new task.Javadoc object
237 // Set up some common parameters for the Javadoc task
328 * The JDiff Ant task does not inherit from an Ant task, such as the
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
GenericCfg.java 19 import org.apache.tools.ant.Task;
41 public GenericCfg (final Task task)
43 if (task == null) throw new IllegalArgumentException ("null input: task");
45 m_task = task;
141 private final Task m_task;
  /hardware/ti/omap3/dspbridge/inc/
rms_sh.h 59 #define RMS_TASK 1 /* Task node */
110 /* Partial task create args structure */
112 RMS_WORD priority; /* Task's runtime priority level */
113 RMS_WORD stackSize; /* Task's stack size */
114 RMS_WORD sysstackSize; /* Task's system stack size (55x) */
115 RMS_WORD stackSeg; /* Memory segment for task's stack */
123 * task nodes; for xDAIS socket nodes
  /hardware/ti/omap3/dspbridge/libbridge/inc/
rms_sh.h 59 #define RMS_TASK 1 /* Task node */
110 /* Partial task create args structure */
112 RMS_WORD priority; /* Task's runtime priority level */
113 RMS_WORD stackSize; /* Task's stack size */
114 RMS_WORD sysstackSize; /* Task's system stack size (55x) */
115 RMS_WORD stackSeg; /* Memory segment for task's stack */
121 * task nodes; for xDAIS socket nodes
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscostask.c 29 Setting up as a WIMP Task
85 Initialise as RISC OS Wimp task
141 /* Neatly exit the task */
150 Get the name of the task for the desktop.
152 Param: task_name - name of task 32 characters.
187 /* Figure out a sensible task name */
221 /* Read variables that effect the RISC OS SDL engine for this task */
260 if (task_name[0] == 0) SDL_strlcpy(task_name, "SDL Task", maxlen);
338 Get version of Wimp running when task was initialised.
  /external/webkit/WebCore/workers/
WorkerLoaderProxy.h 52 // Posts a task to the thread which runs the loading code (normally, the main thread).
53 virtual void postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task>) = 0;
57 virtual void postTaskForModeToWorkerContext(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode) = 0;
WorkerMessagingProxy.cpp 47 class MessageWorkerContextTask : public ScriptExecutionContext::Task {
75 class MessageWorkerTask : public ScriptExecutionContext::Task {
106 class WorkerExceptionTask : public ScriptExecutionContext::Task {
142 class WorkerContextDestroyedTask : public ScriptExecutionContext::Task {
163 class WorkerTerminateTask : public ScriptExecutionContext::Task {
184 class WorkerThreadActivityReportTask : public ScriptExecutionContext::Task {
260 void WorkerMessagingProxy::postTaskForModeToWorkerContext(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
266 m_workerThread->runLoop().postTaskForMode(task, mode);
269 void WorkerMessagingProxy::postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task> task
    [all...]
GenericWorkerTask.h 67 class GenericWorkerTask1 : public ScriptExecutionContext::Task {
96 class GenericWorkerTask2 : public ScriptExecutionContext::Task {
128 class GenericWorkerTask3 : public ScriptExecutionContext::Task {
163 class GenericWorkerTask4 : public ScriptExecutionContext::Task {
201 class GenericWorkerTask5 : public ScriptExecutionContext::Task {
242 class GenericWorkerTask6 : public ScriptExecutionContext::Task {
286 class GenericWorkerTask7 : public ScriptExecutionContext::Task {
333 class GenericWorkerTask8 : public ScriptExecutionContext::Task {
383 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
393 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask
    [all...]
  /sdk/anttasks/src/com/android/ant/
XPathTask.java 22 import org.apache.tools.ant.Task;
33 * Android specific XPath task.
37 public class XPathTask extends Task {
  /external/clearsilver/ruby/
install.rb 737 def exec_task_traverse( task )
738 run_hook 'pre-' + task
744 traverse task, type, task + '_dir_' + type
746 run_hook 'post-' + task
749 def traverse( task, rel, mid )
751 run_hook 'pre-' + task
754 traverse task, rel + '/' + d, mid
756 run_hook 'post-' + task
806 case task = parsearg_global(
    [all...]
  /bionic/libc/kernel/common/linux/
mutex.h 31 struct task_struct *task; member in struct:mutex_waiter
  /external/webkit/WebCore/manual-tests/wml/
onevent-refresh.wml 12 <p>Test for onevent element which binds refresh task with ontimer event</p>
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
mutex.h 31 struct task_struct *task; member in struct:mutex_waiter
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
mutex.h 31 struct task_struct *task; member in struct:mutex_waiter
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
mutex.h 31 struct task_struct *task; member in struct:mutex_waiter

Completed in 441 milliseconds

1 2 3 45 6 7 8 91011>>