HomeSort by relevance Sort by last modified time
    Searched defs:serial (Results 1 - 25 of 474) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/urlhandler/
protocol_hwgrep.py 3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
14 import serial namespace
15 import serial.tools.list_ports namespace
17 class Serial(serial.Serial):
18 """Just inherit the native Serial port implementation and patch the open function."""
23 serial.Serial.setPort(self, self.fromURL(value))
25 serial.Serial.setPort(self, value
    [all...]
  /external/icu/icu4c/source/samples/ucnv/
flagcb.h 47 uint32_t serial; /* minted from nextSerial */ member in struct:__anon11991
  /cts/suite/audio_quality/executable/src/
main.cpp 56 fprintf(stderr, "%s [-l log_level][-s serial] test_xml\n", bin);
61 fprintf(stderr, "%s [-l log_level][-s serial] test_xml\n", argv[0]);
65 char* serial = NULL; local
73 serial = optarg;
98 if (serial != NULL) {
99 android::String8 strSerial(serial);
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.h 29 const char *serial; member in class:AndroidAccessory
59 const char *serial);
  /external/autotest/client/common_lib/
powerplay_util.py 5 import error, logging, os, serial, shutil, threading, time namespace
10 """Class to record serial over USB data from Power Play (go/powerplay).
13 serial port to start receiving powerplay data. It also opens a text file to
52 Get a list of connected USB devices and try to establish a serial
54 start reading serial data and write it to the text file after some
64 self.ser = serial.Serial(device_link, 115200)
67 except serial.SerialException, e:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
IssuerSerial.java 19 ASN1Integer serial; field in class:IssuerSerial
54 serial = ASN1Integer.getInstance(seq.getObjectAt(1));
64 BigInteger serial)
66 this(new GeneralNames(new GeneralName(issuer)), new ASN1Integer(serial));
71 BigInteger serial)
73 this(issuer, new ASN1Integer(serial));
78 ASN1Integer serial)
81 this.serial = serial;
91 return serial;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_core.h 66 uint32_t serial; member in struct:rbug_proto_ping_reply
72 uint32_t serial; member in struct:rbug_proto_error_reply
87 uint32_t serial,
91 uint32_t serial,
  /frameworks/base/core/java/android/hardware/
SensorAdditionalInfo.java 51 public final int serial; field in class:SensorAdditionalInfo
138 serial = aSerial;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
XShm.h 42 unsigned long serial; /* # of last request processed by server */ member in struct:__anon38063
security.h 73 unsigned long serial; /* # of last request processed by server */ member in struct:__anon38159
shape.h 41 unsigned long serial; /* # of last request processed by server */ member in struct:__anon38165
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XShm.h 40 unsigned long serial; /* # of last request processed by server */ member in struct:__anon39921
security.h 71 unsigned long serial; /* # of last request processed by server */ member in struct:__anon40018
shape.h 38 unsigned long serial; /* # of last request processed by server */ member in struct:__anon40024
  /system/core/adb/
transport_test.cpp 166 std::string serial = "foo"; local
173 t.serial = &serial[0];
183 EXPECT_TRUE(t.MatchesTarget(serial));
197 std::string serial = "100.100.100.100:5555"; local
200 t.serial = &serial[0];
  /external/boringssl/src/crypto/x509v3/
v3_akey.c 97 if(akeyid->serial) {
98 tmp = hex_to_string(akeyid->serial->data,
99 akeyid->serial->length);
100 X509V3_add_value("serial", tmp, &extlist);
109 * issuer: use the issuers cert issuer and serial number. The default is
125 ASN1_INTEGER *serial = NULL; local
178 serial = M_ASN1_INTEGER_dup(X509_get_serialNumber(cert));
179 if(!isname || !serial)
202 akeyid->serial = serial;
    [all...]
  /external/dbus/test/
loopback.c 122 dbus_uint32_t serial; local
131 have_mem = dbus_connection_send (f->client_conn, outgoing, &serial);
133 g_assert (serial != 0);
154 g_assert_cmpuint (dbus_message_get_serial (incoming), ==, serial); local
relay.c 182 dbus_uint32_t serial; local
189 have_mem = dbus_connection_send (f->left_client_conn, outgoing, &serial);
191 g_assert (serial != 0);
194 return serial;
  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateSerialNumber.java 55 private SerialNumber serial; field in class:CertificateSerialNumber
60 * @param serial the serial number for the certificate.
63 this.serial = new SerialNumber(num);
69 * @param serial the serial number for the certificate.
72 this.serial = new SerialNumber(num);
78 * @param in the DerInputStream to read the serial number from.
82 serial = new SerialNumber(in);
88 * @param in the InputStream to read the serial number from
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
UserManagerCompatV17.java 45 Long serial = mUserToSerialMap.get(user); local
46 return serial == null ? 0 : serial;
67 long serial = mUserManager.getSerialNumberForUser(myUser.getUser()); local
68 mUsers.put(serial, myUser);
69 mUserToSerialMap.put(myUser, serial);
  /bionic/libc/bionic/
system_properties_compat.c 49 unsigned volatile serial; member in struct:prop_area_compat
63 unsigned volatile serial; member in struct:prop_info_compat
99 unsigned serial, len; local
103 serial = pi->serial;
104 while(SERIAL_DIRTY(serial)) {
105 __futex_wait((volatile void *)&pi->serial, serial, NULL);
106 serial = pi->serial;
    [all...]
  /cts/apps/cts-usb-accessory/
cts-usb-accessory.c 94 char* serial = usb_device_get_serial(device); local
95 if (sDeviceSerial && (!serial || strcmp(sDeviceSerial, serial))) {
96 free(serial);
99 free(serial);
  /development/ndk/platforms/android-3/include/sys/
_system_properties.h 53 unsigned volatile serial; member in struct:prop_area
60 #define SERIAL_VALUE_LEN(serial) ((serial) >> 24)
61 #define SERIAL_DIRTY(serial) ((serial) & 1)
65 unsigned volatile serial; member in struct:prop_info
86 ** 1. serial = pi->serial
87 ** 2. if SERIAL_DIRTY(serial), wait*, then goto 1
88 ** 3. memcpy(local, pi->value, SERIAL_VALUE_LEN(serial) + 1
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
sermsdos.py 41 import serial.serialutil namespace
66 class Serial(serialutil.FileLike):
145 """Read num bytes from serial port"""
153 """Write string to serial port"""
194 return string.join(( "<Serial>: ", self.portstr
199 s = Serial(0)

Completed in 679 milliseconds

1 2 3 4 5 6 7 8 91011>>