OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SDL_cond
(Results
1 - 11
of
11
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/thread/pth/
SDL_syscond.c
35
struct
SDL_cond
41
SDL_cond
* SDL_CreateCond(void)
43
SDL_cond
*cond;
45
cond = (
SDL_cond
*) SDL_malloc(sizeof(
SDL_cond
));
59
void SDL_DestroyCond(
SDL_cond
*cond)
67
int SDL_CondSignal(
SDL_cond
*cond)
85
int SDL_CondBroadcast(
SDL_cond
*cond)
122
int SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
149
int SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mutex
[
all
...]
/external/qemu/distrib/sdl-1.2.15/include/
SDL_mutex.h
132
/** The SDL condition variable structure, defined in
SDL_cond
.c */
133
struct
SDL_cond
;
134
typedef struct
SDL_cond
SDL_cond
;
138
extern DECLSPEC
SDL_cond
* SDLCALL SDL_CreateCond(void);
141
extern DECLSPEC void SDLCALL SDL_DestroyCond(
SDL_cond
*cond);
146
extern DECLSPEC int SDLCALL SDL_CondSignal(
SDL_cond
*cond);
151
extern DECLSPEC int SDLCALL SDL_CondBroadcast(
SDL_cond
*cond);
158
extern DECLSPEC int SDLCALL SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mut);
166
extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
[
all
...]
/prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_mutex.h
132
/** The SDL condition variable structure, defined in
SDL_cond
.c */
133
struct
SDL_cond
;
134
typedef struct
SDL_cond
SDL_cond
;
138
extern DECLSPEC
SDL_cond
* SDLCALL SDL_CreateCond(void);
141
extern DECLSPEC void SDLCALL SDL_DestroyCond(
SDL_cond
*cond);
146
extern DECLSPEC int SDLCALL SDL_CondSignal(
SDL_cond
*cond);
151
extern DECLSPEC int SDLCALL SDL_CondBroadcast(
SDL_cond
*cond);
158
extern DECLSPEC int SDLCALL SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mut);
166
extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
[
all
...]
/prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_mutex.h
132
/** The SDL condition variable structure, defined in
SDL_cond
.c */
133
struct
SDL_cond
;
134
typedef struct
SDL_cond
SDL_cond
;
138
extern DECLSPEC
SDL_cond
* SDLCALL SDL_CreateCond(void);
141
extern DECLSPEC void SDLCALL SDL_DestroyCond(
SDL_cond
*cond);
146
extern DECLSPEC int SDLCALL SDL_CondSignal(
SDL_cond
*cond);
151
extern DECLSPEC int SDLCALL SDL_CondBroadcast(
SDL_cond
*cond);
158
extern DECLSPEC int SDLCALL SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mut);
166
extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
[
all
...]
/prebuilts/tools/windows/sdl/include/SDL/
SDL_mutex.h
132
/** The SDL condition variable structure, defined in
SDL_cond
.c */
133
struct
SDL_cond
;
134
typedef struct
SDL_cond
SDL_cond
;
138
extern DECLSPEC
SDL_cond
* SDLCALL SDL_CreateCond(void);
141
extern DECLSPEC void SDLCALL SDL_DestroyCond(
SDL_cond
*cond);
146
extern DECLSPEC int SDLCALL SDL_CondSignal(
SDL_cond
*cond);
151
extern DECLSPEC int SDLCALL SDL_CondBroadcast(
SDL_cond
*cond);
158
extern DECLSPEC int SDLCALL SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mut);
166
extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_syscond.c
32
struct
SDL_cond
38
SDL_cond
* SDL_CreateCond(void)
40
SDL_cond
*cond;
42
cond = (
SDL_cond
*) SDL_malloc(sizeof(
SDL_cond
));
54
void SDL_DestroyCond(
SDL_cond
*cond)
63
int SDL_CondSignal(
SDL_cond
*cond)
81
int SDL_CondBroadcast(
SDL_cond
*cond)
98
int SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
140
int SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mutex
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_syscond.c
36
struct
SDL_cond
42
SDL_cond
* SDL_CreateCond(void)
44
SDL_cond
*cond;
46
cond = (
SDL_cond
*) SDL_malloc(sizeof(
SDL_cond
));
58
void SDL_DestroyCond(
SDL_cond
*cond)
67
int SDL_CondSignal(
SDL_cond
*cond)
85
int SDL_CondBroadcast(
SDL_cond
*cond)
102
int SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
144
int SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mutex
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/thread/dc/
SDL_syscond.c
32
struct
SDL_cond
42
SDL_cond
* SDL_CreateCond(void)
44
SDL_cond
*cond;
46
cond = (
SDL_cond
*) SDL_malloc(sizeof(
SDL_cond
));
63
void SDL_DestroyCond(
SDL_cond
*cond)
80
int SDL_CondSignal(
SDL_cond
*cond)
104
int SDL_CondBroadcast(
SDL_cond
*cond)
157
int SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
212
int SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mutex
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/thread/generic/
SDL_syscond.c
32
struct
SDL_cond
42
SDL_cond
* SDL_CreateCond(void)
44
SDL_cond
*cond;
46
cond = (
SDL_cond
*) SDL_malloc(sizeof(
SDL_cond
));
63
void SDL_DestroyCond(
SDL_cond
*cond)
80
int SDL_CondSignal(
SDL_cond
*cond)
104
int SDL_CondBroadcast(
SDL_cond
*cond)
157
int SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
212
int SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mutex
[
all
...]
SDL_syssem.c
80
SDL_cond
*count_nonzero;
/external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_syscond.c
32
struct
SDL_cond
42
DECLSPEC
SDL_cond
* SDLCALL SDL_CreateCond(void)
44
SDL_cond
*cond;
46
cond = (
SDL_cond
*) SDL_malloc(sizeof(
SDL_cond
));
63
DECLSPEC void SDLCALL SDL_DestroyCond(
SDL_cond
*cond)
80
DECLSPEC int SDLCALL SDL_CondSignal(
SDL_cond
*cond)
104
DECLSPEC int SDLCALL SDL_CondBroadcast(
SDL_cond
*cond)
157
DECLSPEC int SDLCALL SDL_CondWaitTimeout(
SDL_cond
*cond, SDL_mutex *mutex, Uint32 ms)
212
DECLSPEC int SDLCALL SDL_CondWait(
SDL_cond
*cond, SDL_mutex *mutex
[
all
...]
Completed in 163 milliseconds