/external/openssl/crypto/x509v3/ |
D | v3_akey.c | 94 if(akeyid->serial) { in STACK_OF() 95 tmp = hex_to_string(akeyid->serial->data, in STACK_OF() 96 akeyid->serial->length); in STACK_OF() 121 ASN1_INTEGER *serial = NULL; in v2i_AUTHORITY_KEYID() local 174 serial = M_ASN1_INTEGER_dup(X509_get_serialNumber(cert)); in v2i_AUTHORITY_KEYID() 175 if(!isname || !serial) in v2i_AUTHORITY_KEYID() 198 akeyid->serial = serial; in v2i_AUTHORITY_KEYID() 205 M_ASN1_INTEGER_free(serial); in v2i_AUTHORITY_KEYID()
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
D | IssuerSerial.java | 16 DERInteger serial; field in IssuerSerial 51 serial = DERInteger.getInstance(seq.getObjectAt(1)); in IssuerSerial() 61 DERInteger serial) in IssuerSerial() argument 64 this.serial = serial; in IssuerSerial() 74 return serial; in getSerial() 97 v.add(serial); in toASN1Object()
|
/external/icu4c/samples/ucnv/ |
D | flagcb.c | 147 q,q->serial, q->magic); in debugCB_print_log() 150 q, q->serial, name, q->magic); in debugCB_print_log() 159 newCtx->serial = debugCB_nextSerial(); in debugCB_clone() 166 printf("debugCB_clone: %p:%d -> new context %p:%d\n", ctx, ctx->serial, newCtx, newCtx->serial); in debugCB_clone() 184 …printf("debugCB_fromU: Context %p:%d called, reason %d on cnv %p [err=%s]\n", ctx, ctx->serial, re… in debugCB_fromU() 188 …, "debugCB_fromU: Context %p:%d magic is 0x%x should be 0xC0FFEE.\n", ctx,ctx->serial, ctx->magic); in debugCB_fromU() 258 printf("debugCB_fromU: Context %p:%d closing\n", ctx, ctx->serial); in debugCB_fromU() 276 ctx->serial = debugCB_nextSerial(); in debugCB_openContext() 281 fprintf(stderr, "debugCB:openContext opened[%p] = serial #%d\n", ctx, ctx->serial); in debugCB_openContext()
|
/external/dbus/bus/ |
D | dispatch.c | 777 dbus_uint32_t serial; in check_hello_message() local 802 if (!dbus_connection_send (connection, message, &serial)) in check_hello_message() 852 "Hello", serial, connection); in check_hello_message() 1006 dbus_uint32_t serial; in check_double_hello_message() local 1024 if (!dbus_connection_send (connection, message, &serial)) in check_double_hello_message() 1054 "Hello", serial, connection); in check_double_hello_message() 1096 dbus_uint32_t serial; in check_get_connection_unix_user() local 1126 if (!dbus_connection_send (connection, message, &serial)) in check_get_connection_unix_user() 1156 "GetConnectionUnixUser", serial, connection); in check_get_connection_unix_user() 1233 dbus_uint32_t serial; in check_get_connection_unix_process_id() local [all …]
|
/external/webkit/Source/WebKit/android/wds/client/ |
D | AdbConnection.cpp | 218 char serial[32]; in getDeviceList() local 222 while (sscanf(ptr, "%31s\t%31s\n%n", serial, state, &numRead) > 1) { in getDeviceList() 225 if (strncmp(serial, emulator, sizeof(emulator) - 1) == 0) in getDeviceList() 227 ALOGV("Adding device %s (%s)", serial, state); in getDeviceList() 228 m_devices.add(new Device(serial, t, this)); in getDeviceList()
|
/external/bluetooth/bluez/test/ |
D | test-serial | 41 serial = dbus.Interface(bus.get_object("org.bluez", path), variable 44 node = serial.Connect(service) 56 serial.Disconnect(node)
|
/external/dbus/dbus/ |
D | dbus-pending-call-internal.h | 40 dbus_uint32_t serial); 50 dbus_uint32_t serial); 53 dbus_uint32_t serial);
|
D | dbus-pending-call.c | 289 dbus_uint32_t serial) in _dbus_pending_call_set_reply_serial_unlocked() argument 294 pending->reply_serial = serial; in _dbus_pending_call_set_reply_serial_unlocked() 337 dbus_uint32_t serial) in _dbus_pending_call_set_timeout_error_unlocked() argument 360 _dbus_pending_call_set_reply_serial_unlocked (pending, serial); in _dbus_pending_call_set_timeout_error_unlocked()
|
/external/openssl/apps/ |
D | ca.c | 202 BIGNUM *serial, char *subj,unsigned long chtype, int multirdn, int email_dn, char *startdate, 209 CA_DB *db, BIGNUM *serial, char *subj,unsigned long chtype, int multirdn, int email_dn, 217 CA_DB *db, BIGNUM *serial,char *subj,unsigned long chtype, int multirdn, int email_dn, 224 …STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,char *subj,unsigned long chtype, int multi… 291 BIGNUM *serial=NULL; in MAIN() local 1156 if ((serial=load_serial(serialfile, create_ser, NULL)) == NULL) in MAIN() 1163 if (BN_is_zero(serial)) in MAIN() 1167 if ((f=BN_bn2hex(serial)) == NULL) goto err; in MAIN() 1188 attribs,db, serial,subj,chtype,multirdn, in MAIN() 1196 if (!BN_add_word(serial,1)) goto err; in MAIN() [all …]
|
D | x509.c | 162 char *serial, int create ,int days, int clrext, 187 int text=0,serial=0,subject=0,issuer=0,startdate=0,enddate=0; in MAIN() local 406 serial= ++num; in MAIN() 739 else if (serial == i) in MAIN() 1111 BIGNUM *serial = NULL; in x509_load_serial() local 1133 serial = load_serial(buf, create, NULL); in x509_load_serial() 1134 if (serial == NULL) goto end; in x509_load_serial() 1136 if (!BN_add_word(serial,1)) in x509_load_serial() 1139 if (!save_serial(buf, NULL, serial, &bs)) goto end; in x509_load_serial() 1143 BN_free(serial); in x509_load_serial()
|
/external/bluetooth/bluez/ |
D | Makefile.am | 171 builtin_modules += serial 172 builtin_sources += serial/main.c \ 173 serial/manager.h serial/manager.c \ 174 serial/proxy.h serial/proxy.c \ 175 serial/port.h serial/port.c 276 input/input.conf serial/serial.conf \ 346 udev_files += scripts/bluetooth-serial.rules 355 scripts/bluetooth-hid2hci.rules scripts/bluetooth-serial.rules 366 doc/serial-api.txt doc/network-api.txt \
|
/external/openssl/crypto/ocsp/ |
D | ocsp_lib.c | 79 ASN1_INTEGER *serial; in OCSP_cert_to_id() local 87 serial = X509_get_serialNumber(subject); in OCSP_cert_to_id() 92 serial = NULL; in OCSP_cert_to_id() 95 return OCSP_cert_id_new(dgst, iname, ikey, serial); in OCSP_cert_to_id()
|
/external/openssl/crypto/x509/ |
D | x509cset.c | 154 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial) in X509_REVOKED_set_serialNumber() argument 160 if (in != serial) in X509_REVOKED_set_serialNumber() 162 in=M_ASN1_INTEGER_dup(serial); in X509_REVOKED_set_serialNumber()
|
D | x509_set.c | 77 int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial) in X509_set_serialNumber() argument 83 if (in != serial) in X509_set_serialNumber() 85 in=M_ASN1_INTEGER_dup(serial); in X509_set_serialNumber()
|
/external/openssl/android.testssl/ |
D | CAss.cnf | 43 serial = $dir/serial # The current serial number
|
/external/tcpdump/ |
D | rx.h | 64 u_int32_t serial; member 102 u_int32_t serial; /* # of packet that prompted the ack */ member
|
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/ |
D | xf86dga.h | 104 unsigned long serial; member 114 unsigned long serial; member 124 unsigned long serial; member
|
/external/openssl/crypto/asn1/ |
D | x_crl.c | 78 X509_REVOKED **ret, ASN1_INTEGER *serial, X509_NAME *issuer); 393 X509_REVOKED **ret, ASN1_INTEGER *serial) in X509_CRL_get0_by_serial() argument 396 return crl->meth->crl_lookup(crl, ret, serial, NULL); in X509_CRL_get0_by_serial() 445 X509_REVOKED **ret, ASN1_INTEGER *serial, X509_NAME *issuer) in def_crl_lookup() argument 449 rtmp.serialNumber = serial; in def_crl_lookup() 466 if (ASN1_INTEGER_cmp(rev->serialNumber, serial)) in def_crl_lookup()
|
/external/qemu/docs/ |
D | ANDROID-QEMUD.TXT | 58 The daemon also opens an emulated serial port (e.g. /dev/ttyS1) and 63 emulator <==serial==> qemud <---> /dev/socket/qemud <-+--> client1 67 A very simple multiplexing protocol is used on the serial connection: 87 should normally not appear on the serial port. 136 - Which exact serial port to open is determined by the emulator at startup 159 messages with their clients. The framing happens *after* serial port 168 This is needed because the framing protocol used on the serial port is 174 - QEMU pipe communication model works similarly to the serial port multiplexing, 196 The old scheme also used a serial port to allow the daemon and the emulator 211 emulator <==serial==> qemud <-+--> /dev/socket/qemud_gsm <--> GSM client
|
D | CHAR-DEVICES.TXT | 10 can be connected to things like a host serial port, a host network socket, 75 to the parameters of the '-serial' QEMU option described here: 107 from the emulated /dev/ttyS0 serial port. 144 - The hardware serial port emulation (e.g. hw/goldfish_tty.c) will read data 149 which will in most cases be an emulated serial port. 180 to connect a serial port emulation (in hw/goldfish_tty.c) to the internal
|
/external/qemu/ |
D | blockdev.c | 139 const char *serial; in drive_init() local 184 serial = qemu_opt_get(opts, "serial"); in drive_init() 420 if (serial) in drive_init() 421 strncpy(dinfo->serial, serial, sizeof(dinfo->serial) - 1); in drive_init()
|
/external/chromium/chrome/browser/ |
D | autocomplete_history_manager.cc | 64 int serial; in IsSSN() local 67 &serial) || serial == 0) in IsSSN()
|
/external/qemu/android/ |
D | hw-qemud.c | 671 QemudSerial* serial; member 871 qemud_serial_send(c->ProtocolSelector.Serial.serial, 0, 0, (uint8_t*)tmp, p-tmp); in qemud_client_disconnect() 902 QemudSerial* serial, in qemud_client_alloc() argument 917 c->ProtocolSelector.Serial.serial = serial; in qemud_client_alloc() 1289 QemudSerial serial[1]; member 1460 qemud_serial_send(mult->serial, 0, 0, (uint8_t*)tmp, p-tmp); in qemud_multiplexer_control_recv() 1505 switch (mult->serial->version) { in qemud_multiplexer_control_recv() 1507 mult->serial->version = QEMUD_VERSION_LEGACY; in qemud_multiplexer_control_recv() 1530 if (mult->serial->version == QEMUD_VERSION_LEGACY) in qemud_multiplexer_control_recv() 1536 qemud_serial_send(mult->serial, 0, 0, (uint8_t*)tmp, p-tmp); in qemud_multiplexer_control_recv() [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | CertBlacklist.java | 167 public boolean isSerialNumberBlackListed(BigInteger serial) { in isSerialNumberBlackListed() argument 168 return serialBlacklist.contains(serial); in isSerialNumberBlackListed()
|
/external/dbus/doc/ |
D | TODO | 87 - if you send the same message to multiple connections, the serial number 88 will only be right for one of them. Probably need to just write() the serial 102 - when making a method call, if the call serial were globally unique, 103 we could forward the call serial along with any method calls made 107 call serial to all method calls all the time, or disallowing
|