HomeSort by relevance Sort by last modified time
    Searched defs:cond (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/qemu/audio/
audio_pt_int.h 9 pthread_cond_t cond; member in struct:audio_pt
  /external/qemu/
qemu-thread.h 11 pthread_cond_t cond; member in struct:QemuCond
29 void qemu_cond_init(QemuCond *cond);
30 void qemu_cond_destroy(QemuCond *cond);
31 void qemu_cond_signal(QemuCond *cond);
32 void qemu_cond_broadcast(QemuCond *cond);
33 void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex);
34 int qemu_cond_timedwait(QemuCond *cond, QemuMutex *mutex, uint64_t msecs);
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 53 private final Condition cond; field in class:WaitingThread
69 * @param cond the condition for which to wait
73 public WaitingThread(Condition cond, RouteSpecificPool pool) {
75 if (cond == null) {
79 this.cond = cond;
91 return this.cond;
141 // the lock would not be released on calling cond.await() below.
157 success = this.cond.awaitUntil(deadline);
159 this.cond.await()
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p1.cpp 4 static T cond; member in struct:A
8 return (cond ? value + value : value);
14 A<bool>::cond = true; member in class:A
  /external/clang/test/CodeGen/
conditional-gnu-ext.c 32 _Complex int cond; local
  /external/qemu/distrib/sdl-1.2.12/src/thread/dc/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/generic/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/os2/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/pth/
SDL_syscond.c 43 SDL_cond *cond; local
45 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
46 if ( cond ) {
47 if ( pth_cond_init(&(cond->condpth_p)) < 0 ) {
49 SDL_free(cond);
50 cond = NULL;
55 return(cond);
59 void SDL_DestroyCond(SDL_cond *cond)
61 if ( cond ) {
62 SDL_free(cond);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_syscond.c 34 pthread_cond_t cond; member in struct:SDL_cond
40 SDL_cond *cond; local
42 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
43 if ( cond ) {
44 if ( pthread_cond_init(&cond->cond, NULL) < 0 ) {
46 SDL_free(cond);
47 cond = NULL;
50 return(cond);
54 void SDL_DestroyCond(SDL_cond *cond)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_syscond.c 38 pthread_cond_t cond; member in struct:SDL_cond
44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 if ( pthread_cond_init(&cond->cond, NULL) < 0 ) {
50 SDL_free(cond);
51 cond = NULL;
54 return(cond);
58 void SDL_DestroyCond(SDL_cond *cond)
    [all...]
  /external/valgrind/main/drd/
drd_clientreq.c 333 const Addr cond = arg[1]; local
337 DRD_(cond_pre_wait)(cond, mutex);
344 const Addr cond = arg[1]; local
347 DRD_(cond_post_wait)(cond);
  /external/webrtc/src/system_wrappers/source/
event_linux.h 52 pthread_cond_t cond; member in class:webrtc::EventLinux
  /external/bluetooth/glib/tests/
errorcheck-mutex-test.c 54 GCond* cond = g_cond_new (); local
55 g_cond_wait (cond, mutex);
62 GCond* cond = g_cond_new (); local
66 g_cond_wait (cond, mutex);
73 GCond* cond = g_cond_new (); local
74 g_cond_timed_wait (cond, mutex, NULL);
81 GCond* cond = g_cond_new (); local
85 g_cond_timed_wait (cond, mutex, NULL);
  /external/clang/test/CodeGenCXX/
conditional-gnu-ext.cpp 35 _Complex int cond; local
48 int &cond() { function in namespace:radar8453812
59 foo (cond()? : rhs);
  /external/v8/src/arm/
macro-assembler-arm.cc 74 void MacroAssembler::Jump(Register target, Condition cond) {
76 bx(target, cond);
78 mov(pc, Operand(target), LeaveCC, cond);
84 Condition cond) {
86 mov(ip, Operand(target, rmode), LeaveCC, cond);
87 bx(ip, cond);
89 mov(pc, Operand(target, rmode), LeaveCC, cond);
95 Condition cond) {
97 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
102 Condition cond) {
105 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
202 Call(reinterpret_cast<intptr_t>(target), rmode, cond); local
225 Call(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 205 const Stmt *cond = pred->getTerminatorCondition(); local
207 //assert(cond && "CFGBlock's predecessor has a terminator condition");
210 if (!cond)
214 if (containsMacro(cond) || containsEnum(cond)
215 || containsStaticLocal(cond) || containsBuiltinOffsetOf(cond)
216 || containsStmt<UnaryExprOrTypeTraitExpr>(cond))
  /external/dbus/dbus/
dbus-sysdeps-thread-win.c 34 DBusList *list; /**< list thread-local-stored events waiting on the cond variable */
122 DBusCondVar *cond; local
124 cond = dbus_new (DBusCondVar, 1);
125 if (cond == NULL)
128 cond->list = NULL;
130 InitializeCriticalSection (&cond->lock);
131 return (DBusCondVar *) cond;
135 _dbus_windows_condvar_free (DBusCondVar *cond)
137 DeleteCriticalSection (&cond->lock);
138 _dbus_list_clear (&cond->list)
    [all...]
dbus-sysdeps-pthread.c 56 pthread_cond_t cond; /**< the condition */ member in struct:__anon5486
210 result = pthread_cond_init (&pcond->cond, &attr);
227 _dbus_pthread_condvar_free (DBusCondVar *cond)
229 DBusCondVarPThread *pcond = DBUS_COND_VAR_PTHREAD (cond);
231 PTHREAD_CHECK ("pthread_cond_destroy", pthread_cond_destroy (&pcond->cond));
237 _dbus_pthread_condvar_wait (DBusCondVar *cond,
241 DBusCondVarPThread *pcond = DBUS_COND_VAR_PTHREAD (cond);
249 PTHREAD_CHECK ("pthread_cond_wait", pthread_cond_wait (&pcond->cond, &pmutex->lock));
256 _dbus_pthread_condvar_wait_timeout (DBusCondVar *cond,
261 DBusCondVarPThread *pcond = DBUS_COND_VAR_PTHREAD (cond);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/dc/
SDL_sysjoystick.c 127 cont_cond_t cond,*prev_cond; local
131 if (cont_get_cond(addr,&cond)<0) return;
133 buttons = cond.buttons;
161 if (cond.joyx!=prev_cond->joyx)
162 SDL_PrivateJoystickAxis(joystick, 0, cond.joyx-128);
163 if (cond.joyy!=prev_cond->joyy)
164 SDL_PrivateJoystickAxis(joystick, 1, cond.joyy-128);
165 if (cond.rtrig!=prev_cond->rtrig)
166 SDL_PrivateJoystickAxis(joystick, 2, cond.rtrig);
167 if (cond.ltrig!=prev_cond->ltrig
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dc/
SDL_dcevents.c 68 mouse_cond_t cond; local
74 if ((addr = maple_first_mouse())==0 || mouse_get_cond(addr, &cond)<0) return;
76 buttons = cond.buttons^0xff;
77 if (cond.dz<0) buttons|=MOUSE_WHEELUP;
78 if (cond.dz>0) buttons|=MOUSE_WHEELDOWN;
80 if (cond.dx||cond.dy) SDL_PrivateMouseMotion(0,1,cond.dx,cond.dy);
  /external/clang/test/Sema/
switch.c 34 int cond; local
35 switch (cond) {
41 switch(cond) {
47 switch (cond) {
52 switch (cond) {
57 switch (cond) {
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 48 | Ast.If (cond, then_, else_) ->
49 let cond = codegen_expr cond in var
53 let cond_val = build_fcmp Fcmp.One cond zero "ifcond" builder in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 66 | Ast.If (cond, then_, else_) ->
67 let cond = codegen_expr cond in var in value:codegen_expr
71 let cond_val = build_fcmp Fcmp.One cond zero "ifcond" builder in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 96 | Ast.If (cond, then_, else_) ->
97 let cond = codegen_expr cond in var in value:codegen_expr
101 let cond_val = build_fcmp Fcmp.One cond zero "ifcond" builder in

Completed in 792 milliseconds

1 2 3 4 5