Searched defs:serial (Results 1 - 25 of 135) sorted by relevance

123456

/external/chromium_org/third_party/icu/source/samples/ucnv/
H A Dflagcb.h47 uint32_t serial; /* minted from nextSerial */ member in struct:__anon12168
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/
H A Dprotocol_hwgrep.py14 import serial namespace
15 import serial.tools.list_ports namespace
17 class Serial(serial.Serial):
23 serial.Serial.setPort(self, self.fromURL(value))
25 serial.Serial.setPort(self, value)
31 for port, desc, hwid in serial.tools.list_ports.grep(url):
34 raise serial.SerialException('no ports found matching regexp %r' % (url,))
37 port = property(serial.Serial.getPort, setPort, doc="Port setting")
/external/icu/icu4c/source/samples/ucnv/
H A Dflagcb.h47 uint32_t serial; /* minted from nextSerial */ member in struct:__anon21966
/external/junit/src/org/junit/runner/
H A DComputer.java14 * Returns a new default computer, which runs tests in serial order
16 public static Computer serial() { method in class:Computer
/external/smack/src/org/xbill/DNS/
H A DSerial.java6 * Helper functions for doing serial arithmetic. These should be used when
7 * setting/checking SOA serial numbers. SOA serial number arithmetic is
22 * Compares two numbers using serial arithmetic. The numbers are assumed
45 * Increments a serial number. The number is assumed to be a 32 bit unsigned
48 * @param serial The serial number
49 * @return The incremented serial number
50 * @throws IllegalArgumentException serial is out of range
53 increment(long serial) { argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DIssuerSerial.java19 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;
62 IssuerSerial( X500Name issuer, BigInteger serial) argument
69 IssuerSerial( GeneralNames issuer, BigInteger serial) argument
76 IssuerSerial( GeneralNames issuer, ASN1Integer serial) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DIndexDataManager.h47 unsigned int serial; member in struct:rx::TranslatedIndexData
H A DVertexDataManager.h35 serial(0), divisor(0) {};
45 unsigned int serial; member in struct:rx::TranslatedAttribute
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_set.c75 int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial) argument
81 if (in != serial)
83 in=M_ASN1_INTEGER_dup(serial);
H A Dx509cset.c119 /* sort the data so it will be written in serial
149 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial) argument
155 if (in != serial)
157 in=M_ASN1_INTEGER_dup(serial);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_core.h66 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,
H A Drbug_connection.c64 * Also returns the serial for the message, serial is not touched for replys.
70 rbug_get_message(struct rbug_connection *c, uint32_t *serial) argument
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) argument
162 else if (serial)
163 *serial = c->send_serial++;
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_core.h66 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,
/external/openssl/crypto/x509/
H A Dx509_set.c77 int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial) argument
83 if (in != serial)
85 in=M_ASN1_INTEGER_dup(serial);
H A Dx509cset.c124 /* sort the data so it will be written in serial
154 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial) argument
160 if (in != serial)
162 in=M_ASN1_INTEGER_dup(serial);
/external/qemu/include/sysemu/
H A Dblockdev.h30 char serial[BLOCK_SERIAL_STRLEN + 1]; member in struct:DriveInfo
/external/chromium_org/chrome/browser/devtools/device/
H A Dself_device_provider.cc36 void SelfAsDeviceProvider::QueryDeviceInfo(const std::string& serial, argument
53 void SelfAsDeviceProvider::OpenSocket(const std::string& serial, argument
/external/chromium_org/extensions/test/data/
H A Dserial_unittest.js6 * Unit tests for the JS serial service client.
10 * extensions/renderer/api/serial/serial_api_unittest.cc.
14 var serial = require('serial').binding; variable
33 serial.connect('device', options, test.callbackPass(function(connectionInfo) {
73 serial.disconnect(connectionId, test.callbackPass(function(success) {
103 test.listenOnce(serial.onReceiveError, function(result) {
104 serial.getInfo(connectionId, test.callbackPass(function(connectionInfo) {
116 serial.send(connectionId, buffer, test.callbackPass(function(sendInfo) {
131 return utils.promise(serial
[all...]
/external/chromium_org/rlz/mac/lib/
H A Dmachine_id_mac.cc134 // SHA1 of this harder, also append the system's serial number.
135 CFStringRef serial = CopySerialNumber(); local
136 if (serial) {
139 *data += base::UTF8ToUTF16("serial:") + base::SysCFStringRefToUTF16(serial);
140 CFRelease(serial);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DVertexDeclarationCache.h40 unsigned int serial; member in struct:rx::VertexDeclarationCache::VBData
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_akey.c96 if(akeyid->serial) {
97 tmp = hex_to_string(akeyid->serial->data,
98 akeyid->serial->length);
99 X509V3_add_value("serial", tmp, &extlist);
108 * issuer: use the issuers cert issuer and serial number. The default is
124 ASN1_INTEGER *serial = NULL; local
177 serial = M_ASN1_INTEGER_dup(X509_get_serialNumber(cert));
178 if(!isname || !serial)
201 akeyid->serial = serial;
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_akey.c94 if(akeyid->serial) {
95 tmp = hex_to_string(akeyid->serial->data,
96 akeyid->serial->length);
97 X509V3_add_value("serial", tmp, &extlist);
106 * issuer: use the issuers cert issuer and serial number. The default is
121 ASN1_INTEGER *serial = NULL; local
174 serial = M_ASN1_INTEGER_dup(X509_get_serialNumber(cert));
175 if(!isname || !serial)
198 akeyid->serial = serial;
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertBlacklist.java151 logger.log(Level.WARNING, "Tried to blacklist invalid serial number " + value, e);
224 public boolean isSerialNumberBlackListed(BigInteger serial) { argument
225 return serialBlacklist.contains(serial);
/external/chromium_org/chrome/browser/devtools/device/adb/
H A Dadb_device_provider.cc20 static void RunCommand(const std::string& serial, argument
24 kHostTransportCommand, serial.c_str(), command.c_str());
54 void AdbDeviceProvider::QueryDeviceInfo(const std::string& serial, argument
56 AdbDeviceInfoQuery::Start(base::Bind(&RunCommand, serial), callback);
59 void AdbDeviceProvider::OpenSocket(const std::string& serial, argument
64 AdbClientSocket::TransportQuery(kAdbPort, serial, request, callback);
/external/chromium_org/third_party/libXNVCtrl/
H A DNVCtrlLib.h686 unsigned long serial; member in struct:__anon12475
709 unsigned long serial; member in struct:__anon12477
733 unsigned long serial; member in struct:__anon12479
758 unsigned long serial; member in struct:__anon12481
782 unsigned long serial; member in struct:__anon12483

Completed in 516 milliseconds

123456