Searched defs:work (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium/chrome/browser/sync/glue/
H A Ddatabase_model_worker.cc14 void DatabaseModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { argument
17 work->Run();
23 work, &done))) {
30 void DatabaseModelWorker::CallDoWorkAndSignalTask(Callback0::Type* work, argument
33 work->Run();
H A Dpassword_model_worker.cc24 void PasswordModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { argument
28 work, &done));
32 void PasswordModelWorker::CallDoWorkAndSignalTask(Callback0::Type* work, argument
34 work->Run();
H A Dui_model_worker.cc14 void UIModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { argument
18 // This is fine, the work will get scheduled and run normally or run by our
26 work->Run();
38 pending_work_ = new CallDoWorkAndSignalTask(work, &work_done, this);
40 LOG(WARNING) << "Could not post work to UI loop.";
46 syncapi_event_.Signal(); // Notify that the syncapi produced work for us.
H A Dhistory_model_worker.cc19 WorkerTask(Callback0::Type* work, WaitableEvent* done) argument
20 : work_(work), done_(done) {}
46 void HistoryModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { argument
48 scoped_refptr<WorkerTask> task(new WorkerTask(work, &done));
H A Dui_model_worker.h24 // A ModelSafeWorker for UI models (e.g. bookmarks) that accepts work requests
40 CallDoWorkAndSignalTask(Callback0::Type* work, argument
43 : work_(work), work_done_(work_done), scheduler_(scheduler) {
51 // Task data - a closure and a waitable event to signal after the work has
65 // processed and that syncapi will not schedule any further work for us to do.
69 virtual void DoWorkAndWaitUntilDone(Callback0::Type* work);
74 // assume no work will ever be scheduled again from now on. If it has any work
95 // We have come to a complete stop, no scheduled work remains, and no work
[all...]
/external/clang/test/CodeGen/
H A D2003-11-01-C99-CompoundLiteral.c6 struct wait_queue_head_t work = { lock: (spinlock_t) { 0 }, }; local
/external/chromium/chrome/browser/sync/engine/
H A Dmodel_safe_worker.cc45 void ModelSafeWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) { argument
46 work->Run(); // For GROUP_PASSIVE, we do the work on the current thread.
54 // The passive group is not the work thread for any browser model.
/external/kernel-headers/original/linux/
H A Dworkqueue.h2 * workqueue.h --- work queue handling for Linux.
24 struct work_struct work; member in struct:execute_work
38 * initialize a work-struct's func and data pointers:
47 * initialize all of a work-struct:
64 extern int FASTCALL(queue_work(struct workqueue_struct *wq, struct work_struct *work));
65 extern int FASTCALL(queue_delayed_work(struct workqueue_struct *wq, struct work_struct *work, unsigned long delay));
67 struct work_struct *work, unsigned long delay);
70 extern int FASTCALL(schedule_work(struct work_struct *work));
71 extern int FASTCALL(schedule_delayed_work(struct work_struct *work, unsigned long delay));
73 extern int schedule_delayed_work_on(int cpu, struct work_struct *work, unsigne
91 cancel_delayed_work(struct work_struct *work) argument
[all...]
/external/zlib/contrib/infback9/
H A Dinflate9.h45 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
/external/chromium/base/threading/
H A Dsimple_thread.cc120 // If we were empty, signal that we have work now.
126 Delegate* work = NULL; local
136 work = delegates_.front();
139 // Signal to any other threads that we're currently out of work.
145 if (!work)
148 work->Run();
H A Dsimple_thread.h140 // convenient when you have a lot of small work that you want done
141 // multi-threaded, but don't want to spawn a thread for each small bit of work.
143 // You just call AddWork() to add a delegate to the list of work to be done.
144 // JoinAll() will make sure that all outstanding work is processed, and wait
155 // Start up all of the underlying threads, and start processing work if we
159 // Make sure all outstanding work is finished, and wait for and destroy all
165 void AddWork(Delegate* work, int repeat_count);
166 void AddWork(Delegate* work) { argument
167 AddWork(work, 1);
179 WaitableEvent dry_; // Not signaled when there is no work t
[all...]
/external/dropbear/libtomcrypt/src/ciphers/
H A Ddes.c1407 ulong32 work, right, leftt; local
1414 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
1415 right ^= work;
1416 leftt ^= (work << 4);
1418 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
1419 right ^= work;
1420 leftt ^= (work << 16);
1422 work = ((right >> 2) ^ leftt) & 0x33333333L;
1423 leftt ^= work;
1424 right ^= (work <<
1637 ulong32 work[2]; local
1661 ulong32 work[2]; local
[all...]
/external/qemu/
H A Dd3des.c144 unsigned long work[2]; local
146 scrunch(inblock, work);
147 desfunc(work, KnL);
148 unscrun(work, outblock);
324 register unsigned long fval, work, right, leftt; local
329 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
330 right ^= work;
331 leftt ^= (work << 4);
332 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
333 right ^= work;
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.h113 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
/external/wpa_supplicant/
H A Ddes.c328 u32 work, right, leftt; local
334 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
335 right ^= work;
336 leftt ^= (work << 4);
338 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
339 right ^= work;
340 leftt ^= (work << 16);
342 work = ((right >> 2) ^ leftt) & 0x33333333L;
343 leftt ^= work;
344 right ^= (work <<
411 u32 ek[32], work[2]; local
451 u32 work[2]; local
465 u32 work[2]; local
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Ddes.c328 u32 work, right, leftt; local
334 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
335 right ^= work;
336 leftt ^= (work << 4);
338 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
339 right ^= work;
340 leftt ^= (work << 16);
342 work = ((right >> 2) ^ leftt) & 0x33333333L;
343 leftt ^= work;
344 right ^= (work <<
411 u32 ek[32], work[2]; local
454 u32 work[2]; local
468 u32 work[2]; local
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddes-internal.c326 u32 work, right, leftt; local
332 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
333 right ^= work;
334 leftt ^= (work << 4);
336 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
337 right ^= work;
338 leftt ^= (work << 16);
340 work = ((right >> 2) ^ leftt) & 0x33333333L;
341 leftt ^= work;
342 right ^= (work <<
409 u32 ek[32], work[2]; local
442 u32 work[2]; local
453 u32 work[2]; local
476 u32 work[2]; local
490 u32 work[2]; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Ddes-internal.c326 u32 work, right, leftt; local
332 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
333 right ^= work;
334 leftt ^= (work << 4);
336 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
337 right ^= work;
338 leftt ^= (work << 16);
340 work = ((right >> 2) ^ leftt) & 0x33333333L;
341 leftt ^= work;
342 right ^= (work <<
409 u32 ek[32], work[2]; local
442 u32 work[2]; local
453 u32 work[2]; local
476 u32 work[2]; local
490 u32 work[2]; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddes-internal.c326 u32 work, right, leftt; local
332 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
333 right ^= work;
334 leftt ^= (work << 4);
336 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
337 right ^= work;
338 leftt ^= (work << 16);
340 work = ((right >> 2) ^ leftt) & 0x33333333L;
341 leftt ^= work;
342 right ^= (work <<
409 u32 ek[32], work[2]; local
442 u32 work[2]; local
453 u32 work[2]; local
476 u32 work[2]; local
490 u32 work[2]; local
[all...]
/external/tremolo/Tremolo/
H A Dcodebook.c219 ogg_uint32_t *work; local
229 s->dec_table=_ogg_malloc((s->entries*2+1)*sizeof(*work));
240 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1;
242 work=alloca((s->entries*2+1)*sizeof(*work));
243 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype))return 1;
255 (((work[i] & 0x80000000UL) >> 24) | work[i]);
260 (((work[i] & 0x80000000UL) >> 16) | work[
[all...]
H A Dcodec_internal.h62 ogg_int32_t **work; member in struct:vorbis_dsp_state
/external/zlib/
H A Dinflate.h117 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
/external/qemu/target-i386/
H A Dexec.h343 int work; local
345 work = (env->interrupt_request & CPU_INTERRUPT_HARD) &&
347 work |= env->interrupt_request & CPU_INTERRUPT_NMI;
348 work |= env->interrupt_request & CPU_INTERRUPT_INIT;
349 work |= env->interrupt_request & CPU_INTERRUPT_SIPI;
351 return work;
/external/bluetooth/glib/glib/
H A Dgmessages.c198 register GLogDomain *last, *work; local
202 work = g_log_domains;
203 while (work)
205 if (work == domain)
215 last = work;
216 work = last->next;
364 GLogHandler *work, *last; local
367 work = domain->handlers;
368 while (work)
370 if (work
[all...]
/external/iptables/iptables/
H A Dxtoptions.c728 char *work, *p; local
734 work = strdup(orig_arg);
735 if (work == NULL)
737 p = strchr(work, '/'); /* by def this can't be NULL now */
745 cb->arg = work;

Completed in 4054 milliseconds

12