OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisEngine
(Results
1 - 8
of
8
) sorted by null
/frameworks/wilhelm/src/desktop/
SDL.c
27
IEngine *
thisEngine
= (IEngine *) context;
31
interface_lock_shared(
thisEngine
);
32
COutputMix *outputMix =
thisEngine
->mOutputMix;
33
interface_unlock_shared(
thisEngine
);
45
void SDL_open(IEngine *
thisEngine
)
57
fmt.userdata = (void *)
thisEngine
;
/frameworks/wilhelm/src/objects/
COutputMix.c
66
IEngine *
thisEngine
= &outputMix->mObject.mEngine->mEngine;
67
interface_lock_exclusive(
thisEngine
);
69
if (outputMix ==
thisEngine
->mOutputMix) {
72
interface_unlock_exclusive(
thisEngine
);
/frameworks/wilhelm/src/itf/
IObject.c
551
IEngine *
thisEngine
= &thiz->mEngine->mEngine;
555
if (
thisEngine
->mThis != thiz) {
556
interface_lock_exclusive(
thisEngine
);
559
assert(0 <
thisEngine
->mInstanceCount);
560
--
thisEngine
->mInstanceCount;
565
assert(
thisEngine
->mInstanceMask & mask);
566
thisEngine
->mInstanceMask &= ~mask;
567
assert(
thisEngine
->mInstances[i] == thiz);
568
thisEngine
->mInstances[i] = NULL;
571
if (
thisEngine
->mThis != thiz)
[
all
...]
IOutputMixExt.c
183
IEngine *
thisEngine
= &thisObject->mEngine->mEngine;
184
interface_lock_exclusive(
thisEngine
);
185
assert(&
thisEngine
->mOutputMix->mObject == thisObject);
186
thisEngine
->mOutputMix = NULL;
188
interface_unlock_exclusive(
thisEngine
);
IEngine.c
688
IEngine *
thisEngine
= &thiz->mObject.mEngine->mEngine;
689
interface_lock_exclusive(
thisEngine
);
691
if (NULL ==
thisEngine
->mOutputMix) {
692
thisEngine
->mOutputMix = thiz;
695
interface_unlock_exclusive(
thisEngine
);
[
all
...]
/frameworks/wilhelm/src/
locks.c
261
IEngine *
thisEngine
= &thiz->mEngine->mEngine;
263
interface_lock_exclusive(
thisEngine
);
264
thisEngine
->mChangedMask |= 1 << id;
265
interface_unlock_exclusive(
thisEngine
);
sles.c
496
IEngine *
thisEngine
= (IEngine *) engine;
497
if (NULL ==
thisEngine
) {
498
//
thisEngine
= &((CEngine *) thiz)->mEngine;
501
thiz->mEngine = (CEngine *)
thisEngine
->mThis;
502
interface_lock_exclusive(
thisEngine
);
503
if (MAX_INSTANCE <=
thisEngine
->mInstanceCount) {
505
interface_unlock_exclusive(
thisEngine
);
510
++
thisEngine
->mInstanceCount;
511
assert(((unsigned) ~0) !=
thisEngine
->mInstanceMask);
512
interface_unlock_exclusive(
thisEngine
);
[
all
...]
sles_allinclusive.h
364
extern void SDL_open(IEngine *
thisEngine
);
Completed in 505 milliseconds