HomeSort by relevance Sort by last modified time
    Searched full:serial (Results 76 - 100 of 2408) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/bison/m4/
strtoul.m4 1 # strtoul.m4 serial 5
unistd-safer.m4 0 #serial 9
xalloc.m4 1 # xalloc.m4 serial 18
xstrndup.m4 1 # xstrndup.m4 serial 2
  /external/libyuv/files/unit_test/testdata/
arm_v7.txt 12 Serial : 0000000000000000
  /ndk/sources/host-tools/sed-4.2.1/m4/
exitfail.m4 1 # exitfail.m4 serial 6
quote.m4 1 # quote.m4 serial 5
quotearg.m4 1 # quotearg.m4 serial 8
xstrndup.m4 1 # xstrndup.m4 serial 2
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_io_handler.cc 5 #include "chrome/browser/extensions/api/serial/serial_io_handler.h"
57 api::serial::ReceiveError error) {
68 api::serial::SendError error) {
87 void SerialIoHandler::CancelRead(api::serial::ReceiveError reason) {
96 void SerialIoHandler::CancelWrite(api::serial::SendError reason) {
106 api::serial::ReceiveError error) {
113 api::serial::SendError error) {
serial_io_handler_posix.cc 5 #include "chrome/browser/extensions/api/serial/serial_io_handler_posix.h"
61 ReadCompleted(0, api::serial::RECEIVE_ERROR_DEVICE_LOST);
63 ReadCompleted(0, api::serial::RECEIVE_ERROR_SYSTEM_ERROR);
66 ReadCompleted(0, api::serial::RECEIVE_ERROR_DEVICE_LOST);
68 ReadCompleted(bytes_read, api::serial::RECEIVE_ERROR_NONE);
87 WriteCompleted(0, api::serial::SEND_ERROR_SYSTEM_ERROR);
89 WriteCompleted(bytes_written, api::serial::SEND_ERROR_NONE);
serial_event_dispatcher.cc 5 #include "chrome/browser/extensions/api/serial/serial_event_dispatcher.h"
8 #include "chrome/browser/extensions/api/serial/serial_connection.h"
20 bool ShouldPauseOnReceiveError(serial::ReceiveError error) {
21 return error == serial::RECEIVE_ERROR_DEVICE_LOST ||
22 error == serial::RECEIVE_ERROR_SYSTEM_ERROR ||
23 error == serial::RECEIVE_ERROR_DISCONNECTED;
47 DCHECK(manager) << "No serial connection manager.";
90 serial::ReceiveError error) {
96 serial::ReceiveInfo receive_info;
99 scoped_ptr<base::ListValue> args = serial::OnReceive::Create(receive_info)
    [all...]
serial_io_handler.h 12 #include "chrome/common/extensions/api/serial.h"
17 // Provides a simplified interface for performing asynchronous I/O on serial
30 api::serial::ReceiveError error)>
35 typedef base::Callback<void(int bytes_written, api::serial::SendError error)>
61 void CancelRead(api::serial::ReceiveError reason);
64 void CancelWrite(api::serial::SendError reason);
97 void ReadCompleted(int bytes_read, api::serial::ReceiveError error);
102 void WriteCompleted(int bytes_written, api::serial::SendError error);
107 void QueueReadCompleted(int bytes_read, api::serial::ReceiveError error);
112 void QueueWriteCompleted(int bytes_written, api::serial::SendError error)
    [all...]
serial_port_enumerator.h 20 // Discovers and enumerates likely serial ports on the current machine.
26 // the supplied set of names of serial ports that exist on this machine.
  /frameworks/base/core/java/android/hardware/
SerialManager.java 49 * Returns a string array containing the names of available serial ports
51 * @return names of available serial ports
64 * The speed of the serial port must be one of:
69 * @param name of the serial port
70 * @param speed at which to open the serial port
71 * @return the serial port
81 throw new IOException("Could not open serial port " + name);
  /system/core/libcutils/
cpu_info.c 23 // we cache the serial number here.
36 // read serial number from /proc/cpuinfo
43 // look for something like "Serial : 999206122a03591c"
45 if (strncmp(chp, "Serial", 6) != 0)
74 // shift serial number to beginning of the buffer
  /bionic/libc/bionic/
system_properties.c 59 unsigned volatile serial; member in struct:prop_area
69 unsigned volatile serial; member in struct:prop_info
314 info->serial = (valuelen << 24);
443 unsigned serial, len; local
450 serial = pi->serial;
451 while(SERIAL_DIRTY(serial)) {
452 __futex_wait((volatile void *)&pi->serial, serial, 0);
453 serial = pi->serial
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_connection.c 64 * Also returns the serial for the message, serial is not touched for replys.
70 rbug_get_message(struct rbug_connection *c, uint32_t *serial)
107 else if (serial)
108 *serial = c->recv_serial++;
156 * Ups the send_serial and sets the serial argument if supplied.
158 int rbug_connection_send_finish(struct rbug_connection *c, uint32_t *serial)
162 else if (serial)
163 *serial = c->send_serial++;
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_connection.c 64 * Also returns the serial for the message, serial is not touched for replys.
70 rbug_get_message(struct rbug_connection *c, uint32_t *serial)
107 else if (serial)
108 *serial = c->recv_serial++;
156 * Ups the send_serial and sets the serial argument if supplied.
158 int rbug_connection_send_finish(struct rbug_connection *c, uint32_t *serial)
162 else if (serial)
163 *serial = c->send_serial++;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug_refcnt.c 47 /* TODO: maybe move this serial machinery to a stand-alone module and expose it? */
70 unsigned serial; local
84 serial = (unsigned)(uintptr_t)util_hash_table_get(serials_hash, p);
85 if(!serial)
90 serial = ++serials_last;
91 if(!serial)
97 util_hash_table_set(serials_hash, p, (void*)(uintptr_t)serial);
101 *pserial = serial;
150 unsigned serial; local
151 boolean existing = debug_serial((void*)p, &serial);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_refcnt.c 47 /* TODO: maybe move this serial machinery to a stand-alone module and expose it? */
70 unsigned serial; local
84 serial = (unsigned)(uintptr_t)util_hash_table_get(serials_hash, p);
85 if(!serial)
90 serial = ++serials_last;
91 if(!serial)
97 util_hash_table_set(serials_hash, p, (void*)(uintptr_t)serial);
101 *pserial = serial;
150 unsigned serial; local
151 boolean existing = debug_serial((void*)p, &serial);
    [all...]
  /system/core/adb/
transport.c 93 D("%s: run_transport_disconnects\n", t->serial);
209 if(read_packet(fd, t->serial, &p)){
210 D("%s: failed to read packet from transport socket on fd %d\n", t->serial, fd);
242 if(write_packet(t->transport_socket, t->serial, &p)){
266 t->serial, t->fd, t->sync_token + 1);
272 if(write_packet(t->fd, t->serial, &p)) {
274 D("%s: failed to write SYNC packet\n", t->serial);
278 D("%s: data pump started\n", t->serial);
284 t->serial);
285 if(write_packet(t->fd, t->serial, &p))
936 const char* serial = t->serial; local
    [all...]
  /bootable/recovery/minadbd/
transport.c 88 D("%s: run_transport_disconnects\n", t->serial);
204 if(read_packet(fd, t->serial, &p)){
205 D("%s: failed to read packet from transport socket on fd %d\n", t->serial, fd);
237 if(write_packet(t->transport_socket, t->serial, &p)){
261 t->serial, t->fd, t->sync_token + 1);
267 if(write_packet(t->fd, t->serial, &p)) {
269 D("%s: failed to write SYNC packet\n", t->serial);
273 D("%s: data pump started\n", t->serial);
279 t->serial);
280 if(write_packet(t->fd, t->serial, &p))
    [all...]
  /cts/hostsidetests/usb/SerialTestApp/src/com/android/cts/usb/serialtest/
UsbSerialTest.java 25 * Device test which reads Build.SERIAL and just print it.
31 Log.e(TAG, Build.SERIAL);
  /external/junit/src/org/junit/runner/
Computer.java 14 * Returns a new default computer, which runs tests in serial order
16 public static Computer serial() { method in class:Computer

Completed in 711 milliseconds

1 2 34 5 6 7 8 91011>>