Home
last modified time | relevance | path

Searched refs:Serial (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/external/angle/src/libANGLE/renderer/
Dserial_utils.h42 class Serial final
45 constexpr Serial() : mValue(kInvalid) {} in Serial() function
46 constexpr Serial(const Serial &other) = default;
47 Serial &operator=(const Serial &other) = default;
49 static constexpr Serial Infinite() { return Serial(std::numeric_limits<uint64_t>::max()); } in Infinite()
51 constexpr bool operator==(const Serial &other) const
59 constexpr bool operator!=(const Serial &other) const
63 constexpr bool operator>(const Serial &other) const { return mValue > other.mValue; }
64 constexpr bool operator>=(const Serial &other) const { return mValue >= other.mValue; }
65 constexpr bool operator<(const Serial &other) const { return mValue < other.mValue; }
[all …]
Dserial_utils_unittest.cpp20 Serial a = factory.generate(); in TEST()
21 Serial b = factory.generate(); in TEST()
25 Serial zero; in TEST()
/external/angle/src/libANGLE/renderer/vulkan/
DCommandProcessor.h92 void initFinishToSerial(Serial serial);
100 Serial submitQueueSerial);
106 Serial submitQueueSerial);
115 void setQueueSerial(Serial serial) { mSerial = serial; } in setQueueSerial()
116 Serial getQueueSerial() const { return mSerial; } in getQueueSerial()
149 Serial mSerial;
183 Serial serial;
263 Serial finishSerial,
265 virtual Serial reserveSubmitSerial() = 0;
275 Serial submitQueueSerial) = 0;
[all …]
DResourceVk.h31 Serial serial;
56 void updateSerialOneOff(Serial serial) { mUse->serial = serial; } in updateSerialOneOff()
69 ANGLE_INLINE void releaseAndUpdateSerial(Serial serial) in releaseAndUpdateSerial()
95 ANGLE_INLINE bool usedInRunningCommands(Serial lastCompletedSerial) const in usedInRunningCommands()
101 ANGLE_INLINE bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse()
106 ANGLE_INLINE Serial getSerial() const in getSerial()
125 bool destroyIfComplete(RendererVk *renderer, Serial completedSerial);
146 void releaseResourceUsesAndUpdateSerials(Serial serial);
172 bool usedInRunningCommands(Serial lastCompletedSerial) const in usedInRunningCommands()
178 bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse()
DCommandProcessor.cpp48 Serial currentSerial; in CommandsHaveValidOrdering()
199 void CommandProcessorTask::initFinishToSerial(Serial serial) in initFinishToSerial()
214 Serial submitQueueSerial) in initFlushAndQueueSubmit()
230 Serial submitQueueSerial) in initOneOffQueueSubmit()
419 ANGLE_TRY(mCommandQueue.finishToSerial(this, Serial::Infinite(), in processTask()
554 Serial CommandProcessor::getLastCompletedQueueSerial() const in getLastCompletedQueueSerial()
560 Serial CommandProcessor::getLastSubmittedQueueSerial() const in getLastSubmittedQueueSerial()
566 Serial CommandProcessor::getCurrentQueueSerial() const in getCurrentQueueSerial()
572 Serial CommandProcessor::reserveSubmitSerial() in reserveSubmitSerial()
579 angle::Result CommandProcessor::finishToSerial(Context *context, Serial serial, uint64_t timeout) in finishToSerial()
[all …]
DCommandGraph.h174 Serial serial,
301 Serial serial;
336 ANGLE_INLINE void releaseAndUpdateSerial(Serial serial) in releaseAndUpdateSerial()
362 ANGLE_INLINE bool hasRunningCommands(Serial lastCompletedSerial) const in hasRunningCommands()
368 ANGLE_INLINE bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse()
373 ANGLE_INLINE Serial getSerial() const in getSerial()
392 bool destroyIfComplete(VkDevice device, Serial completedSerial);
411 void releaseResourceUsesAndUpdateSerials(Serial serial);
444 bool hasRunningCommands(Serial lastCompletedSerial) const in hasRunningCommands()
450 bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse()
[all …]
Dvk_utils.h258 ObjectAndSerial(ObjT &&object, Serial serial) : mObject(std::move(object)), mSerial(serial) {}
270 Serial getSerial() const { return mSerial; }
271 void updateSerial(Serial newSerial) { mSerial = newSerial; }
281 mSerial = Serial();
286 Serial mSerial;
365 void collectGarbage(RendererVk *renderer, Serial serial);
788 class Type##Serial \
791 constexpr Type##Serial() : mSerial(kInvalid) {} \
792 constexpr explicit Type##Serial(uint32_t serial) : mSerial(serial) {} \
794 constexpr bool operator==(const Type##Serial &other) const \
[all …]
DRendererVk.h194 Serial issueShaderSerial();
241 Serial *serialOut);
282 ANGLE_INLINE Serial getCurrentQueueSerial() in getCurrentQueueSerial()
295 ANGLE_INLINE Serial getLastSubmittedQueueSerial() in getLastSubmittedQueueSerial()
308 ANGLE_INLINE Serial getLastCompletedQueueSerial() in getLastCompletedQueueSerial()
345 angle::Result cleanupGarbage(Serial lastCompletedQueueSerial);
359 angle::Result finishToSerial(vk::Context *context, Serial serial);
361 Serial serial,
522 Serial serial;
/external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/
Dprotocol_hwgrep.py17 class Serial(serial.Serial): class
23 serial.Serial.setPort(self, self.fromURL(value))
25 serial.Serial.setPort(self, value)
37 port = property(serial.Serial.getPort, setPort, doc="Port setting")
42 s = Serial(None)
/external/pigweed/pw_web_ui/src/transport/
Dweb_serial_transport_test.ts27 const transport = new WebSerialTransport(serialMock as Serial);
32 const transport = new WebSerialTransport(serialMock as Serial);
39 const transport = new WebSerialTransport(serialMock as Serial);
52 const transport = new WebSerialTransport(serialMock as Serial);
63 const transport = new WebSerialTransport(serialMock as Serial);
81 const transport = new WebSerialTransport(serialMock as Serial);
94 const transport = new WebSerialTransport(serialMock as Serial);
99 const transport = new WebSerialTransport(serialMock as Serial);
/external/pigweed/pw_sys_io_arduino/
Ddocs.rst8 `Arduino's Serial interface <https://www.arduino.cc/reference/en/language/functions/communication/s…
10 On initialization it runs Arduino's first ``Serial`` interface at a 115200 baud
15 Serial.begin(115200);
18 while (!Serial) {
21 After ``Serial.begin(115200)`` it will busy wait until a host connects to the
Dsys_io_arduino.cc23 extern "C" void pw_sys_io_Init() { Serial.begin(115200); } in pw_sys_io_Init()
40 if (!Serial.available()) { in TryReadByte()
43 *dest = static_cast<std::byte>(Serial.read()); in TryReadByte()
50 Serial.write((uint8_t)b); in WriteByte()
/external/crosvm/arch/src/
Dserial.rs18 use devices::{Bus, ProtectionType, ProxyDevice, Serial, SerialDevice};
94 Serial, // Standard PC-style (8250/16550 compatible) UART enumerator
101 SerialHardware::Serial => "serial".to_string(), in fmt()
113 "serial" => Ok(SerialHardware::Serial), in from_str()
362 let default_console = (SerialHardware::Serial, 1); in set_default_serial_parameters()
368 hardware: SerialHardware::Serial, in set_default_serial_parameters()
382 let key = (SerialHardware::Serial, num); in set_default_serial_parameters()
385 hardware: SerialHardware::Serial, in set_default_serial_parameters()
429 .get(&(SerialHardware::Serial, x + 1)) in add_serial_devices()
434 .create_serial_device::<Serial>(protected_vm, &com_evt, &mut preserved_fds) in add_serial_devices()
[all …]
/external/chromium-trace/catapult/third_party/pyserial/serial/
D__init__.py51 klass = Serial # 'native' implementation
68 klass = sys.modules[module_name].Serial
73 klass = Serial # 'native' implementation
/external/pigweed/pw_web_ui/types/
Dserial.d.ts71 declare class Serial extends EventTarget {
96 readonly serial: Serial;
103 readonly serial: Serial;
/external/crosvm/devices/src/
Dserial.rs66 pub struct Serial { struct
85 impl SerialDevice for Serial { argument
92 ) -> Serial { in new() argument
93 Serial { in new()
111 impl Serial { impl
309 impl BusDevice for Serial { implementation
421 let mut serial = Serial::new( in serial_output()
443 let mut serial = Serial::new( in serial_input()
/external/python/httplib2/python2/httplib2/
Dcacerts.txt4 # Serial: 421
27 # Serial: 1
54 # Serial: 1
81 # Serial: 903804111
108 # Serial: 167285380242319648451154478808036881606
135 # Serial: 4835703278459707669005204
164 # Serial: 4835703278459682885658125
194 # Serial: 1
220 # Serial: 1
246 # Serial: 1
[all …]
/external/python/httplib2/python3/httplib2/
Dcacerts.txt4 # Serial: 421
27 # Serial: 1
54 # Serial: 1
81 # Serial: 903804111
108 # Serial: 167285380242319648451154478808036881606
135 # Serial: 4835703278459707669005204
164 # Serial: 4835703278459682885658125
194 # Serial: 1
220 # Serial: 1
246 # Serial: 1
[all …]
/external/grpc-grpc/src/android/test/interop/app/src/main/assets/
Droots.pem8 # Serial: 4835703278459707669005204
37 # Serial: 4835703278459682885658125
67 # Serial: 206684696279472310254277870180966723415
99 # Serial: 946069240
132 # Serial: 33554617
161 # Serial: 1
194 # Serial: 1164660820
229 # Serial: 144470
257 # Serial: 1
296 # Serial: 1
[all …]
/external/grpc-grpc/etc/
Droots.pem8 # Serial: 4835703278459707669005204
37 # Serial: 4835703278459682885658125
67 # Serial: 206684696279472310254277870180966723415
99 # Serial: 946069240
132 # Serial: 33554617
161 # Serial: 1
194 # Serial: 1164660820
229 # Serial: 144470
257 # Serial: 1
296 # Serial: 1
[all …]
/external/angle/src/libANGLE/
DFramebufferAttachment.h63 rx::Serial framebufferSerial);
70 void detach(const Context *context, rx::Serial framebufferSerial);
80 rx::Serial framebufferSerial);
216 virtual void onAttach(const Context *context, rx::Serial framebufferSerial) = 0;
217 virtual void onDetach(const Context *context, rx::Serial framebufferSerial) = 0;
/external/walt/arduino/
DREADME.md6 When compiling using Arduino IDE, remember to set the mode to **"Serial + MIDI"**.
8 Note: the "Serial + MIDI" mode was
/external/angle/src/libANGLE/renderer/d3d/d3d9/
DVertexArray9.h33 Serial getCurrentStateSerial() const { return mCurrentStateSerial; } in getCurrentStateSerial()
36 Serial mCurrentStateSerial;
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DTransformFeedback11.h48 Serial getSerial() const;
57 Serial mSerial;
/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Dserial_detokenizer.py66 def _detokenize_serial(databases: Iterable, device: serial.Serial, argument
74 serial_device = serial.Serial(port=device, baudrate=baudrate)

12345678910>>...12