Searched defs:uuid (Results 51 - 52 of 52) sorted by relevance

123

/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp304 JNIEnv *env, jobject thiz, const uint8_t uuid[16]) {
306 mDrm = MakeDrm(uuid);
343 sp<IDrm> JDrm::MakeDrm(const uint8_t uuid[16]) { argument
350 status_t err = drm->createPlugin(uuid);
386 bool JDrm::IsCryptoSchemeSupported(const uint8_t uuid[16], const String8 &mimeType) { argument
393 return drm->isCryptoSchemeSupported(uuid, mimeType);
635 jniThrowException(env, "java/lang/IllegalArgumentException", "uuid is null");
639 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj); local
641 if (uuid.size() != 16) {
647 sp<JDrm> drm = new JDrm(env, thiz, uuid
303 JDrm( JNIEnv *env, jobject thiz, const uint8_t uuid[16]) argument
677 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj); local
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java2142 public List<WifiConfiguration> syncGetConfiguredNetworks(int uuid, AsyncChannel channel) { argument
2143 Message resultMsg = channel.sendMessageSynchronously(CMD_GET_CONFIGURED_NETWORKS, uuid);

Completed in 721 milliseconds

123