OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MPH
(Results
1 - 8
of
8
) sorted by null
/frameworks/wilhelm/tools/hashgen/
part8.c
2
int
MPH
= hash_to_MPH[key];
3
if (
MPH
>= 0) {
4
assert(
MPH
< MPH_MAX);
5
SLInterfaceID trial = &SL_IID_array[
MPH
];
7
return
MPH
;
frag1.c
20
#include "
MPH
.h"
28
int
MPH
;
30
for (
MPH
= 0;
MPH
< MPH_MAX; ++
MPH
, ++x) {
frag3.c
4
extern void MPH_to_MPH_string(unsigned
MPH
, char buffer[40]);
15
unsigned
MPH
;
16
for (
MPH
= 0;
MPH
< MPH_MAX; ++
MPH
, ++xx) {
20
MPH_to_MPH_string(
MPH
, buffer);
/frameworks/wilhelm/src/autogen/
IID_to_MPH.c
19
/** \file IID_to_MPH.c Interface ID to
MPH
mapping */
22
#include "
MPH
.h"
28
/** \brief Map SLInterfaceID to its minimal perfect hash (
MPH
), or -1 if unknown */
321
int
MPH
= hash_to_MPH[key];
322
if (
MPH
>= 0) {
323
assert(
MPH
< MPH_MAX);
324
SLInterfaceID trial = &SL_IID_array[
MPH
];
326
return
MPH
;
/frameworks/wilhelm/src/itf/
IDynamicInterfaceManagement.c
23
// Parameter self is the DynamicInterface, and
MPH
specifies which interface to add.
25
static void HandleAdd(void *self, void *ignored, int
MPH
)
33
assert(0 <=
MPH
&&
MPH
< MPH_MAX);
36
int index = clazz->mMPH_to_index[
MPH
];
56
BoolHook expose = MPH_init_table[
MPH
].mExpose;
98
const SLInterfaceID iid = &SL_IID_array[
MPH
]; // equal but not == to the original IID
117
int
MPH
, index;
118
if ((0 > (
MPH
= IID_to_MPH(iid))) ||
120
// (NULL == MPH_init_table[
MPH
].mInit) |
[
all
...]
IEffectSend.c
62
unsigned
MPH
= AUX_to_MPH[aux];
63
int index = MPH_to_OutputMix[
MPH
];
65
SL_LOGE("EffectSend aux=%u
MPH
=%u", aux,
MPH
);
IObject.c
338
int
MPH
, index;
339
if ((0 > (
MPH
= IID_to_MPH(iid))) ||
341
// (NULL == MPH_init_table[
MPH
].mInit) ||
342
(0 > (index = clazz->mMPH_to_index[
MPH
]))) {
351
} else if ((MPH_MUTESOLO ==
MPH
) && (SL_OBJECTID_AUDIOPLAYER ==
708
int
MPH
, index;
709
// We ignore without error any invalid
MPH
or index, but spec is unclear
710
if ((0 <= (
MPH
= IID_to_MPH(iid))) &&
712
// (NULL == MPH_init_table[
MPH
].mInit) ||
713
(0 <= (index = clazz->mMPH_to_index[
MPH
]))) {
[
all
...]
/frameworks/wilhelm/src/
sles.c
30
bool IsInterfaceInitialized(IObject *thiz, unsigned
MPH
)
33
assert( /* (MPH_MIN <=
MPH
) && */ (
MPH
< (unsigned) MPH_MAX));
37
if (0 > (index = clazz->mMPH_to_index[
MPH
])) {
194
int
MPH
, index;
195
if ((0 > (
MPH
= IID_to_MPH(iid))) ||
197
(NULL == MPH_init_table[
MPH
].mInit) ||
198
(0 > (index = clazz->mMPH_to_index[
MPH
])) ||
203
SL_LOGE("class %s interface %u required but unavailable
MPH
=%d",
204
clazz->mName, i,
MPH
);
[
all
...]
Completed in 5100 milliseconds