Home
last modified time | relevance | path

Searched refs:descriptor (Results 1 – 5 of 5) sorted by relevance

/development/tools/winscope/src/messaging/
Duser_warnings.ts48 private readonly descriptor: string, property in TraceHasOldData
65 `${this.descriptor}: discarded because data is old` +
73 private readonly descriptor: string, property in TraceOverridden
85 return `${this.descriptor}: overridden by another trace of type ${
89 return `${this.descriptor}: overridden by another trace of same type`;
94 constructor(private readonly descriptor: string) { property in UnsupportedFileFormat
103 return `${this.descriptor}: unsupported format`;
109 private readonly descriptor: string, property in InvalidPerfettoTrace
120 return `${this.descriptor}: ${this.parserErrorMessages.join(', ')}`;
/development/tools/winscope/src/trace/
Dtrace_file.ts23 let descriptor = FileUtils.removeDirFromFileName(this.file.name);
25 descriptor += ` (${this.parentArchive.name})`;
27 return descriptor;
/development/host/windows/usb/api/
Dadb_helper_routines.cpp262 USB_DEVICE_DESCRIPTOR descriptor; in IsLegacyInterface() local
266 &descriptor, in IsLegacyInterface()
267 sizeof(descriptor), in IsLegacyInterface()
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/
DSignatureSourcer.java218 public void visitBaseType(final char descriptor) { in visitBaseType() argument
219 getBuf().append(Type.getType(Character.toString(descriptor)).getClassName()); in visitBaseType()
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DBluetoothLeService.java301 BluetoothGattDescriptor descriptor = characteristic.getDescriptor( in setCharacteristicNotification() local
303 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE); in setCharacteristicNotification()
304 mBluetoothGatt.writeDescriptor(descriptor); in setCharacteristicNotification()