Home
last modified time | relevance | path

Searched refs:iname (Results 1 – 22 of 22) sorted by relevance

/external/elfutils/libelf/
Ddl-hash.h61 const unsigned char *iname = (const unsigned char *) name; in _dl_elf_hash() local
62 unsigned int hash = (unsigned int) *iname++; in _dl_elf_hash()
63 if (*iname != '\0') in _dl_elf_hash()
65 hash = (hash << 4) + (unsigned int) *iname++; in _dl_elf_hash()
66 if (*iname != '\0') in _dl_elf_hash()
68 hash = (hash << 4) + (unsigned int) *iname++; in _dl_elf_hash()
69 if (*iname != '\0') in _dl_elf_hash()
71 hash = (hash << 4) + (unsigned int) *iname++; in _dl_elf_hash()
72 if (*iname != '\0') in _dl_elf_hash()
74 hash = (hash << 4) + (unsigned int) *iname++; in _dl_elf_hash()
[all …]
/external/webkit/Source/WebCore/wml/
DWMLSelectElement.cpp281 String iname = this->iname(); in calculateDefaultOptionIndices() local
282 if (!iname.isEmpty()) { in calculateDefaultOptionIndices()
283 variable = pageState->getVariable(iname); in calculateDefaultOptionIndices()
349 String iname = this->iname(); in initializeVariables() local
350 if (!iname.isEmpty()) in initializeVariables()
351 pageState->storeVariable(iname, optionIndicesToString()); in initializeVariables()
386 String iname = this->iname(); in updateVariables() local
387 if (iname.isEmpty() && name.isEmpty()) in updateVariables()
418 if (!iname.isEmpty()) in updateVariables()
419 pageState->storeVariable(iname, inameString); in updateVariables()
[all …]
DWMLAttributeNames.in12 iname
DWMLSelectElement.h110 String iname() const;
/external/openssl/crypto/ocsp/
Docsp_lib.c78 X509_NAME *iname; in OCSP_cert_to_id() local
86 iname = X509_get_issuer_name(subject); in OCSP_cert_to_id()
91 iname = X509_get_subject_name(issuer); in OCSP_cert_to_id()
95 return OCSP_cert_id_new(dgst, iname, ikey, serial); in OCSP_cert_to_id()
Docsp_vfy.c301 X509_NAME *iname; in ocsp_match_issuerid() local
316 iname = X509_get_subject_name(cert); in ocsp_match_issuerid()
317 if (!X509_NAME_digest(iname, dgst, md, NULL)) in ocsp_match_issuerid()
/external/openssl/crypto/x509v3/
Dv3_purp.c319 X509_NAME *iname = NULL; in setup_dp() local
338 iname = gen->d.directoryName; in setup_dp()
342 if (!iname) in setup_dp()
343 iname = X509_get_issuer_name(x); in setup_dp()
345 DIST_POINT_set_dpname(dp->distpoint, iname); in setup_dp()
Dv3_crld.c587 int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn, X509_NAME *iname) in DIST_POINT_set_dpname() argument
595 dpn->dpname = X509_NAME_dup(iname); in DIST_POINT_set_dpname()
Dx509v3.h573 int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn, X509_NAME *iname);
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java780 String iname = r0[col]; in getBestRowIdentifier() local
789 SQLite.Shell.sql_quote(iname) + ")")); in getBestRowIdentifier()
899 String iname = r0[col]; in getPrimaryKeys() local
908 SQLite.Shell.sql_quote(iname) + ")")); in getPrimaryKeys()
931 row[5] = iname; in getPrimaryKeys()
1319 String iname = r0[col]; in getIndexInfo() local
1328 SQLite.Shell.sql_quote(iname) + ")")); in getIndexInfo()
1348 (iname.charAt(0) == '(' && in getIndexInfo()
1349 iname.indexOf(" autoindex ") > 0)) ? "0" : "1"; in getIndexInfo()
1351 row[5] = iname; in getIndexInfo()
/external/dnsmasq/src/
Ddnsmasq.h355 struct iname { struct
359 struct iname *next; argument
618 struct iname *if_names, *if_addrs, *if_except, *dhcp_except;
Dnetwork.c51 struct iname *tmp; in iface_check()
125 struct iname *tmp; in iface_allowed()
157 struct iname *lo; in iface_allowed()
166 (lo = whine_malloc(sizeof(struct iname))) && in iface_allowed()
Doption.c1301 struct iname *new = opt_malloc(sizeof(struct iname)); in one_opt()
1316 struct iname *new = opt_malloc(sizeof(struct iname)); in one_opt()
1351 struct iname *new = opt_malloc(sizeof(struct iname)); in one_opt()
2892 struct iname *tmp; in read_opts()
Dtftp.c51 struct iname *tmp; in tftp_request()
Ddhcp.c106 struct iname *tmp; in dhcp_packet()
Ddnsmasq.c77 struct iname *if_tmp; in main()
/external/openssh/
Dssh-keyscan.c322 conalloc(char *iname, char *oname, int keytype) in conalloc() argument
327 namebase = namelist = xstrdup(iname); in conalloc()
/external/openssl/apps/
Docsp.c958 X509_NAME *iname; in add_ocsp_serial() local
968 iname = X509_get_subject_name(issuer); in add_ocsp_serial()
976 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno); in add_ocsp_serial()
/external/strace/
DCREDITS43 Gaël Roualland <gael.roualland@iname.com>
/external/kernel-headers/original/asm-mips/
Dsgiarcs.h89 _PULONG iname; /* string identifier */ member
/external/openssl/include/openssl/
Dx509v3.h573 int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn, X509_NAME *iname);
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2992515 Add 'iname' / 'ivalue' support and support variable references.
92518 … Needs more tests when adding full 'iname' / 'ivalue' support (used in conjuction with onpick).
92545 (WebCore::WMLSelectElement::iname):