Searched defs:channelType (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthAppConfiguration.java60 channelType) {
64 mChannelType = channelType;
150 int channelType = in.readInt();
152 channelType);
59 BluetoothHealthAppConfiguration(String name, int dataType, int role, int channelType) argument
H A DBluetoothHealth.java164 * @param channelType The channel type. Will be one of
172 int channelType, BluetoothHealthCallback callback) {
174 if (!isEnabled() || !checkAppParam(name, role, channelType, callback)) return result;
179 new BluetoothHealthAppConfiguration(name, dataType, role, channelType);
261 BluetoothHealthAppConfiguration config, int channelType) {
265 return mService.connectChannelToSink(device, config, channelType);
556 private boolean checkAppParam(String name, int role, int channelType, argument
559 (channelType != CHANNEL_TYPE_RELIABLE &&
560 channelType != CHANNEL_TYPE_STREAMING &&
561 channelType !
171 registerAppConfiguration(String name, int dataType, int role, int channelType, BluetoothHealthCallback callback) argument
260 connectChannelToSink(BluetoothDevice device, BluetoothHealthAppConfiguration config, int channelType) argument
[all...]
/frameworks/native/libs/sensor/
H A DSensorManager.cpp254 size_t size, int channelType, const native_handle_t *resourceHandle) {
260 if (channelType != SENSOR_DIRECT_MEM_TYPE_ASHMEM
261 && channelType != SENSOR_DIRECT_MEM_TYPE_GRALLOC) {
262 ALOGE("Bad channel shared memory type %d", channelType);
269 static_cast<int32_t>(channelType),
253 createDirectChannel( size_t size, int channelType, const native_handle_t *resourceHandle) argument
/frameworks/base/native/android/
H A Dsensor.cpp336 bool ASensor_isDirectChannelTypeSupported(ASensor const *sensor, int channelType) { argument
338 return static_cast<Sensor const *>(sensor)->isDirectChannelTypeSupported(channelType);
/frameworks/base/core/java/android/hardware/
H A DSystemSensorManager.java64 long nativeInstance, long size, int channelType, int fd, HardwareBuffer buffer);
63 nativeCreateDirectChannel( long nativeInstance, long size, int channelType, int fd, HardwareBuffer buffer) argument
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp236 jlong size, jint channelType, jint fd, jobject hardwareBufferObj) {
240 if (channelType == SENSOR_DIRECT_MEM_TYPE_ASHMEM) {
244 } else if (channelType == SENSOR_DIRECT_MEM_TYPE_GRALLOC) {
257 return mgr->createDirectChannel(size, channelType, nativeHandle);
235 nativeCreateDirectChannel(JNIEnv *_env, jclass _this, jlong sensorManager, jlong size, jint channelType, jint fd, jobject hardwareBufferObj) argument

Completed in 6284 milliseconds