Lines Matching full:engine_ids
35 SLInterfaceID *engine_ids = calloc(numSupportedInterfaces+1, sizeof(SLInterfaceID));
36 assert(engine_ids != NULL);
50 engine_ids[index] = interfaceID;
63 result = slCreateEngine(&engineObject, 0, NULL, numSupportedInterfaces, engine_ids, NULL);
72 result = slCreateEngine(NULL, 0, NULL, numSupportedInterfaces, engine_ids, engine_req);
96 engine_ids[numSupportedInterfaces] = SL_IID_VOLUME;
98 result = slCreateEngine(&engineObject, 0, NULL, numSupportedInterfaces+1, engine_ids,
109 result = slCreateEngine(&engineObject, 2, options, numSupportedInterfaces+1, engine_ids,
118 result = (*engineObject)->GetInterface(engineObject, engine_ids[index], &interface);
122 slesutPrintIID(engine_ids[index]);
130 result = slCreateEngine(&engineObject, 0, NULL, numSupportedInterfaces, engine_ids, engine_req);
141 result = (*engineObject)->GetInterface(engineObject, engine_ids[index], &interface);
146 struct SLInterfaceID_ copy = *engine_ids[index];
169 free(engine_ids);