Home
last modified time | relevance | path

Searched refs:descriptorIndex (Results 1 – 6 of 6) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DGattClientFacade.java1116 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex) in gattClientReadDescriptorByIndex()
1137 if (descList.get(descriptorIndex) == null) { in gattClientReadDescriptorByIndex()
1138 throw new Exception("Invalid descriptorIndex " + descriptorIndex); in gattClientReadDescriptorByIndex()
1140 return bluetoothGatt.readDescriptor(descList.get(descriptorIndex)); in gattClientReadDescriptorByIndex()
1206 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex) in gattClientWriteDescriptorByIndex()
1227 if (descList.get(descriptorIndex) == null) { in gattClientWriteDescriptorByIndex()
1228 throw new Exception("Invalid descriptorIndex " + descriptorIndex); in gattClientWriteDescriptorByIndex()
1230 return bluetoothGatt.writeDescriptor(descList.get(descriptorIndex)); in gattClientWriteDescriptorByIndex()
1300 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex, in gattClientDescriptorSetValueByIndex()
1322 if (descList.get(descriptorIndex) == null) { in gattClientDescriptorSetValueByIndex()
[all …]
DGattServerFacade.java545 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex) throws Exception { in gattServerCharacteristicAddDescriptor()
547 if (mDescriptorList.get(descriptorIndex) != null) { in gattServerCharacteristicAddDescriptor()
548 mCharacteristicList.get(index).addDescriptor(mDescriptorList.get(descriptorIndex)); in gattServerCharacteristicAddDescriptor()
550 throw new Exception("Invalid descriptorIndex input:" + descriptorIndex); in gattServerCharacteristicAddDescriptor()
/external/proguard/src/proguard/optimize/
DDuplicateInitializerFixer.java174 int descriptorIndex = descriptor.indexOf(ClassConstants.METHOD_ARGUMENTS_CLOSE); in visitSignatureAttribute() local
179 descriptor.charAt(descriptorIndex - 1) + in visitSignatureAttribute()
/external/turbine/java/com/google/turbine/bytecode/
DClassReader.java374 int descriptorIndex = reader.u2(); in readMethods() local
375 String desc = constantPool.utf8(descriptorIndex); in readMethods()
453 int descriptorIndex = reader.u2(); in readFields() local
454 String desc = constantPool.utf8(descriptorIndex); in readFields()
/external/vulkan-validation-layers/layers/
Dparameter_validation_utils.cpp1981 …for (uint32_t descriptorIndex = 0; descriptorIndex < pDescriptorWrites[i].descriptorCount; ++descr… in manual_PreCallValidateUpdateDescriptorSets() local
1984 … ParameterName::IndexVector{i, descriptorIndex}), in manual_PreCallValidateUpdateDescriptorSets()
1985 … pDescriptorWrites[i].pBufferInfo[descriptorIndex].buffer); in manual_PreCallValidateUpdateDescriptorSets()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DGeneratedMessage.java1451 final int descriptorIndex, in newMessageScopedGeneratedExtension() argument
1461 return scope.getDescriptorForType().getExtensions().get(descriptorIndex); in newMessageScopedGeneratedExtension()