Home
last modified time | relevance | path

Searched refs:MPH (Results 1 – 14 of 14) sorted by relevance

/frameworks/wilhelm/src/itf/
DIDynamicInterfaceManagement.cpp25 static void HandleAdd(void *self, void *ignored, int MPH) in HandleAdd() argument
33 assert(0 <= MPH && MPH < MPH_MAX); in HandleAdd()
36 int index = clazz->mMPH_to_index[MPH]; in HandleAdd()
56 BoolHook expose = MPH_init_table[MPH].mExpose; in HandleAdd()
98 const SLInterfaceID iid = &SL_IID_array[MPH]; // equal but not == to the original IID in HandleAdd()
117 int MPH, index; in IDynamicInterfaceManagement_AddInterface() local
118 if ((0 > (MPH = IID_to_MPH(iid))) || in IDynamicInterfaceManagement_AddInterface()
121 (0 > (index = clazz->mMPH_to_index[MPH]))) { in IDynamicInterfaceManagement_AddInterface()
139 NULL, MPH); in IDynamicInterfaceManagement_AddInterface()
165 BoolHook expose = MPH_init_table[MPH].mExpose; in IDynamicInterfaceManagement_AddInterface()
[all …]
DIObject.cpp338 int MPH, index; in IObject_GetInterface() local
339 if ((0 > (MPH = IID_to_MPH(iid))) || in IObject_GetInterface()
342 (0 > (index = clazz->mMPH_to_index[MPH]))) { in IObject_GetInterface()
351 } else if ((MPH_MUTESOLO == MPH) && (SL_OBJECTID_AUDIOPLAYER == in IObject_GetInterface()
707 int MPH, index; in IObject_SetLossOfControlInterfaces() local
709 if ((0 <= (MPH = IID_to_MPH(iid))) && in IObject_SetLossOfControlInterfaces()
712 (0 <= (index = clazz->mMPH_to_index[MPH]))) { in IObject_SetLossOfControlInterfaces()
DIEffectSend.cpp62 unsigned MPH = AUX_to_MPH[aux]; in getEnableLevel() local
63 int index = MPH_to_OutputMix[MPH]; in getEnableLevel()
65 SL_LOGE("EffectSend aux=%u MPH=%u", aux, MPH); in getEnableLevel()
/frameworks/wilhelm/tools/hashgen/
Dtest.c33 int MPH = IID_to_MPH(original); in main() local
34 if (MPH != i) { in main()
35 fprintf(stderr, "error: IID_to_MPH(SL_IID_array) = %d != %d\n", MPH, i); in main()
40 MPH = IID_to_MPH(&copy); in main()
41 if (MPH != i) { in main()
42 fprintf(stderr, "error: IID_to_MPH(copy) = %d != %d\n", MPH, i); in main()
Dfrag3.c4 extern void MPH_to_MPH_string(unsigned MPH, char buffer[40]);
15 unsigned MPH; in main() local
16 for (MPH = 0; MPH < MPH_MAX; ++MPH, ++xx) { in main()
20 MPH_to_MPH_string(MPH, buffer); in main()
Dpart8.c2 int MPH = hash_to_MPH[key]; variable
3 if (MPH >= 0) {
4 assert(MPH < MPH_MAX);
5 SLInterfaceID trial = &SL_IID_array[MPH];
7 return MPH;
Dfrag1.c28 int MPH; in main() local
30 for (MPH = 0; MPH < MPH_MAX; ++MPH, ++x) { in main()
DREADME.txt2 You need to do this after modifying either OpenSLES_IID.c or MPH.c.
/frameworks/wilhelm/src/autogen/
DIID_to_MPH.cpp251 int MPH = hash_to_MPH[key]; in IID_to_MPH() local
252 if (MPH >= 0) { in IID_to_MPH()
253 assert(MPH < MPH_MAX); in IID_to_MPH()
254 SLInterfaceID trial = &SL_IID_array[MPH]; in IID_to_MPH()
256 return MPH; in IID_to_MPH()
/frameworks/wilhelm/src/
Dinterfaces.cpp136 void MPH_to_MPH_string(unsigned MPH, char buffer[40]) in MPH_to_MPH_string() argument
138 assert(MPH_MAX > MPH); in MPH_to_MPH_string()
144 strcat(buffer, interface_names[MPH]); in MPH_to_MPH_string()
Dsles.cpp30 bool IsInterfaceInitialized(IObject *thiz, unsigned MPH) in IsInterfaceInitialized() argument
33 assert( /* (MPH_MIN <= MPH) && */ (MPH < (unsigned) MPH_MAX)); in IsInterfaceInitialized()
37 if (0 > (index = clazz->mMPH_to_index[MPH])) { in IsInterfaceInitialized()
194 int MPH, index; in checkInterfaces() local
195 if ((0 > (MPH = IID_to_MPH(iid))) || in checkInterfaces()
197 (NULL == MPH_init_table[MPH].mInit) || in checkInterfaces()
198 (0 > (index = clazz->mMPH_to_index[MPH])) || in checkInterfaces()
204 clazz->mName, i, MPH); in checkInterfaces()
209 clazz->mName, i, MPH); in checkInterfaces()
Dsles_allinclusive.h416 extern bool IsInterfaceInitialized(IObject *thiz, unsigned MPH);
/frameworks/wilhelm/tools/mphtogen/
DREADME.txt2 You need to do this after modifying any of the MPH-related files.
DMakefile10 mphtogen : mphtogen.c MPH_to.c MPH.h MPH_to.h