Home | History | Annotate | Download | only in jni

Lines Matching full:uuid

40 // that there is a mess of UUID comparison and shortening methods will have to
42 // The btcore->uuid module should be used for all instances.
135 jbyte *addr = NULL, *uuid = NULL;
146 uuid = env->GetByteArrayElements(uuidObj, NULL);
147 if (!uuid) {
148 ALOGE("failed to get uuid");
151 ALOGD("%s UUID %.*s",__FUNCTION__,16, (uint8_t*)uuid);
155 (const uint8_t*)uuid)) != BT_STATUS_SUCCESS) {
164 if (uuid) env->ReleaseByteArrayElements(uuidObj, uuid, 0);
173 jbyteArray uuid = NULL;
186 uuid = sCallbackEnv->NewByteArray(sizeof(bt_uuid_t));
187 if (uuid == NULL) goto clean;
190 sCallbackEnv->SetByteArrayRegion(uuid, 0, sizeof(bt_uuid_t), (jbyte*)uuid_in);
204 /* call the right callback according to the uuid*/
210 uuid,
225 uuid,
238 uuid,
258 uuid,
271 uuid,
277 // we don't have a wrapper for this uuid, send as raw data
287 (jint) status, addr, uuid, record_data_size, record_data);
303 if (uuid != NULL) sCallbackEnv->DeleteLocalRef(uuid);