HomeSort by relevance Sort by last modified time
    Searched full:identity (Results 401 - 425 of 2955) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/browser/media/
webrtc_identity_store_backend.cc 24 // Initializes the identity table, returning true on success.
62 struct WebRTCIdentityStoreBackend::Identity {
63 Identity(const std::string& common_name,
71 Identity(const std::string& common_name,
122 const Identity& identity);
125 const Identity& identity);
145 const Identity& identity)
154 Identity identity; member in struct:content::WebRTCIdentityStoreBackend::SqlLiteStorage::PendingOperation
    [all...]
webrtc_identity_store_backend.h 44 // Finds the identity with |origin|, |identity_name|, and |common_name| from
46 // |origin| is the origin of the identity;
47 // |identity_name| is used to identify an identity within an origin;
57 // Adds the identity to the DB and overwrites any existing identity having the
59 // |origin| is the origin of the identity;
60 // |identity_name| is used to identify an identity within an origin;
97 struct Identity;
98 typedef std::map<IdentityKey, Identity> IdentityMap;
109 // "Find identity" requests waiting for the DB to load
    [all...]
  /external/chromium_org/ui/gfx/
matrix3_unittest.cc 18 Matrix3F identity = Matrix3F::Identity(); local
29 EXPECT_EQ(i == j ? 1.0f : 0.0f, identity.get(i, j));
35 Matrix3F identity = Matrix3F::Identity(); local
37 EXPECT_EQ(Vector3dF(0.0f, 1.0f, 0.0f), identity.get_column(1));
48 EXPECT_EQ(1.0f, Matrix3F::Identity().Determinant());
68 Matrix3F identity = Matrix3F::Identity(); local
69 Matrix3F inv_identity = identity.Inverse()
92 Matrix3F identity = Matrix3F::Identity(); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 47 private final List<Identity> identities = new CopyOnWriteArrayList<Identity>();
74 for (Identity i : d.identities) {
119 * Adds a new identity of the requested entity to the discovered information.
121 * @param identity the discovered entity's identity
123 public void addIdentity(Identity identity) {
125 identities.add(identity);
134 public void addIdentities(Collection<Identity> identitiesToAdd)
    [all...]
  /external/libnfc-nxp/src/
phHciNfc_IDMgmt.h 22 * \brief HCI Header for the Identity Management Gate. *
76 * The phHciNfc_IDMgmt_Initialise function creates and the opens Identity
84 * \retval NFCSTATUS_PENDING Identity Mgmt Gate Initialisation is pending.
100 * from the Identity Management Gate
107 * \retval NFCSTATUS_PENDING Identity Mgmt Gate Information is pending.
131 * \retval NFCSTATUS_PENDING Release of the Identity Management gate
153 * \param[in] pipeID pipeID of the Identity management Gate
154 * \param[in] pPipeInfo Update the pipe Information of the Identity
173 * \brief Updates the Sequence of Identity Managment Gate.
175 * This function Updates the Sequence of the Identity Managemen
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
VerifierDeviceIdentityTest.java 71 assertEquals("The VerifierDeviceIdentity should have the same hashcode as its identity",
78 assertEquals("The identity should encode correctly to the expected Base 32 string",
85 assertEquals("The identity should encode correctly to the expected Base 32 string",
92 assertEquals("The identity should encode correctly to the expected Base 32 string",
99 assertEquals("The identity should encode correctly to the expected Base 32 string",
106 assertEquals("The identity should encode correctly to the expected Base 32 string",
131 assertEquals("Original identity and parceled identity should be the same", id1, id2);
158 assertEquals("Identity created from Long.MIN_VALUE and one created from return from RNG"
169 assertEquals("Identity should end up being same when coming from RNG", id1, id2)
    [all...]
  /frameworks/base/services/java/com/android/server/print/
PrintManagerService.java 109 final long identity = Binder.clearCallingIdentity(); local
114 Binder.restoreCallingIdentity(identity);
126 final long identity = Binder.clearCallingIdentity(); local
130 Binder.restoreCallingIdentity(identity);
142 final long identity = Binder.clearCallingIdentity(); local
146 Binder.restoreCallingIdentity(identity);
158 final long identity = Binder.clearCallingIdentity(); local
162 Binder.restoreCallingIdentity(identity);
174 final long identity = Binder.clearCallingIdentity(); local
178 Binder.restoreCallingIdentity(identity);
189 final long identity = Binder.clearCallingIdentity(); local
204 final long identity = Binder.clearCallingIdentity(); local
220 final long identity = Binder.clearCallingIdentity(); local
236 final long identity = Binder.clearCallingIdentity(); local
252 final long identity = Binder.clearCallingIdentity(); local
267 final long identity = Binder.clearCallingIdentity(); local
282 final long identity = Binder.clearCallingIdentity(); local
297 final long identity = Binder.clearCallingIdentity(); local
312 final long identity = Binder.clearCallingIdentity(); local
329 final long identity = Binder.clearCallingIdentity(); local
345 final long identity = Binder.clearCallingIdentity(); local
364 final long identity = Binder.clearCallingIdentity(); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
SystemScopeTest.java 24 import java.security.Identity;
55 while (e.hasMoreElements()) ss.removeIdentity((Identity)e.nextElement());
81 * verify getIdentity(String) returns requested identity or null if not found
87 java.security.Identity aaa = new IdentityScopeStub("aaa");
95 * verify getIdentity(PublicKey) returns requested identity or null if not found
101 java.security.Identity aaa = new IdentityScopeStub("aaa");
109 * verify that only one identity with given name or public key can be added
115 java.security.Identity aaa = new IdentityScopeStub("aaa");
119 java.security.Identity bbb = new IdentityScopeStub("aaa");
125 java.security.Identity ccc = new IdentityScopeStub("ccc")
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gtc.c 131 if (sm->identity && sm->require_identity_match &&
133 os_memcmp(pos, sm->identity, sm->identity_len))) {
134 wpa_printf(MSG_DEBUG, "EAP-GTC: Phase 2 Identity did "
135 "not match with required Identity");
137 "identity",
138 sm->identity, sm->identity_len);
142 os_free(sm->identity);
144 sm->identity = os_malloc(sm->identity_len);
145 if (sm->identity == NULL) {
149 os_memcpy(sm->identity, pos, sm->identity_len)
    [all...]
  /external/chromium_org/third_party/icu/source/data/xml/brkitr/
el.xml 12 <identity>
16 </identity>
en_US_POSIX.xml 12 <identity>
18 </identity>
fi.xml 12 <identity>
16 </identity>
he.xml 12 <identity>
16 </identity>
ja.xml 12 <identity>
16 </identity>
th.xml 12 <identity>
16 </identity>
  /external/chromium_org/third_party/icu/source/data/xml/collation/
root.xml 12 <identity>
16 </identity>
  /external/chromium_org/third_party/icu/source/data/xml/main/
aa.xml 12 <identity>
16 </identity>
af.xml 12 <identity>
16 </identity>
ak.xml 12 <identity>
16 </identity>
am.xml 12 <identity>
16 </identity>
ar.xml 12 <identity>
16 </identity>
as.xml 12 <identity>
16 </identity>
asa.xml 12 <identity>
16 </identity>
az.xml 12 <identity>
16 </identity>
az_Cyrl.xml 12 <identity>
17 </identity>

Completed in 150 milliseconds

<<11121314151617181920>>