Searched defs:devicePath (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/server/
H A DBluetoothHealthProfileHandler.java370 /*package*/ void onHealthDevicePropertyChanged(String devicePath, argument
373 String address = mBluetoothService.getAddressFromObjectPath(devicePath);
428 /*package*/ void onHealthDeviceChannelChanged(String devicePath, argument
430 debugLog("onHealthDeviceChannelChanged: devicePath: " + devicePath +
433 String address = mBluetoothService.getAddressFromObjectPath(devicePath);
463 mBluetoothService.getMainChannelNative(devicePath);
465 errorLog("Main Channel Path is null for devicePath:" + devicePath);
H A DBluetoothEventLoop.java1027 * @param devicePath the object path of the remote device
1030 private void onHealthDevicePropertyChanged(String devicePath, String[] propValues) { argument
1032 mBluetoothService.onHealthDevicePropertyChanged(devicePath, propValues[1]);
1039 * @param devicePath the object path of the remote device
1043 private void onHealthDeviceChannelChanged(String devicePath, String channelPath, argument
1045 log("Health Device : devicePath: " + devicePath + ":channelPath:" + channelPath +
1047 mBluetoothService.onHealthDeviceChannelChanged(devicePath, channelPath, exists);
H A DBluetoothService.java2275 /*package*/ void onHealthDevicePropertyChanged(String devicePath, argument
2278 mBluetoothHealthProfileHandler.onHealthDevicePropertyChanged(devicePath,
2283 /*package*/ void onHealthDeviceChannelChanged(String devicePath, argument
2286 mBluetoothHealthProfileHandler.onHealthDeviceChannelChanged(devicePath,
2849 native boolean createChannelNative(String devicePath, String appPath, String channelType, argument
2851 native boolean destroyChannelNative(String devicePath, String channelpath, int code); argument
/frameworks/base/core/jni/
H A Dandroid_server_BluetoothService.cpp1453 jstring devicePath, jstring appPath, jstring config,
1463 const char *c_device_path = env->GetStringUTFChars(devicePath, NULL);
1478 env->ReleaseStringUTFChars(devicePath, c_device_path);
1488 static jboolean destroyChannelNative(JNIEnv *env, jobject object, jstring devicePath, argument
1498 const char *c_device_path = env->GetStringUTFChars(devicePath, NULL);
1510 env->ReleaseStringUTFChars(devicePath, c_device_path);
1519 static jstring getMainChannelNative(JNIEnv *env, jobject object, jstring devicePath) { argument
1524 const char *c_device_path = env->GetStringUTFChars(devicePath, NULL);
1532 env->ReleaseStringUTFChars(devicePath, c_device_path);
1452 createChannelNative(JNIEnv *env, jobject object, jstring devicePath, jstring appPath, jstring config, jint code) argument

Completed in 2912 milliseconds