/frameworks/wilhelm/src/itf/ |
D | IDynamicInterfaceManagement.cpp | 25 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 …]
|
D | IObject.cpp | 338 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()
|
D | IEffectSend.cpp | 62 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/ |
D | test.c | 33 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(©); in main() 41 if (MPH != i) { in main() 42 fprintf(stderr, "error: IID_to_MPH(copy) = %d != %d\n", MPH, i); in main()
|
D | frag3.c | 4 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()
|
D | part8.c | 2 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;
|
D | frag1.c | 28 int MPH; in main() local 30 for (MPH = 0; MPH < MPH_MAX; ++MPH, ++x) { in main()
|
D | README.txt | 2 You need to do this after modifying either OpenSLES_IID.c or MPH.c.
|
/frameworks/wilhelm/src/autogen/ |
D | IID_to_MPH.cpp | 251 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/ |
D | interfaces.cpp | 136 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()
|
D | sles.cpp | 30 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()
|
D | sles_allinclusive.h | 416 extern bool IsInterfaceInitialized(IObject *thiz, unsigned MPH);
|
/frameworks/wilhelm/tools/mphtogen/ |
D | README.txt | 2 You need to do this after modifying any of the MPH-related files.
|
D | Makefile | 10 mphtogen : mphtogen.c MPH_to.c MPH.h MPH_to.h
|