HomeSort by relevance Sort by last modified time
    Searched refs:identity (Results 276 - 300 of 687) sorted by null

<<11121314151617181920>>

  /external/v8/src/heap/
spaces-inl.h 324 DCHECK(this->owner()->identity() != NEW_SPACE);
465 if (update_skip_list == UPDATE_SKIP_LIST && identity() == CODE_SPACE) {
472 return AllocationResult::Retry(identity());
486 DCHECK(identity() == OLD_SPACE);
513 return AllocationResult::Retry(identity());
mark-compact.cc 281 AllocationSpaceName(space->identity()), number_of_pages,
502 ParallelSweepPage(page, page->owner()->identity());
514 sweeper().ParallelSweepSpace(space->identity(), 0);
521 SweptList& list = swept_list_[space->identity()];
689 DCHECK(space->identity() == OLD_SPACE || space->identity() == CODE_SPACE);
783 AllocationSpaceName(space->identity()), free_bytes / KB,
806 AllocationSpaceName(space->identity()), reduce_memory,
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_mschapv2.c 157 const u8 *identity, *password; local
162 identity = eap_get_config_identity(sm, &identity_len);
164 if (identity == NULL || password == NULL)
207 if (mschapv2_derive_response(identity, identity_len, password,
221 wpabuf_put_data(resp, identity, identity_len);
715 wpa_printf(MSG_INFO, "EAP-MSCHAPV2: Identity not configured");
  /external/wpa_supplicant_8/src/eap_server/
eap_server_peap.c 116 if (sm->identity) {
124 wpabuf_put_data(buf, sm->identity, id_len);
1007 if (eap_user_get(sm, sm->identity, sm->identity_len, 1) != 0) {
1009 "Identity not found in the user "
1011 sm->identity, sm->identity_len);
1259 wpa_hexdump_ascii(MSG_DEBUG, "EAP-PEAP: Identity from cached session",
1261 os_free(sm->identity)
    [all...]
  /external/dbus/dbus/
dbus-auth.c 165 DBusString identity; /**< Current identity we're authorizing member in struct:DBusAuth
174 DBusCredentials *desired_identity; /**< Identity client has requested */
365 if (!_dbus_string_init (&auth->identity))
407 _dbus_string_free (&auth->identity);
422 _dbus_string_set_length (&auth->identity, 0);
536 if (_dbus_string_get_length (&auth->identity) > 0)
539 _dbus_verbose ("%s: client tried to send auth identity, but we already have one\n",
545 /* this is our auth identity */
546 if (!_dbus_string_copy (data, 0, &auth->identity, 0)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
path.c 1597 struct matrix identity; local
1616 struct matrix identity; local
1768 struct matrix identity; local
1851 struct matrix identity; local
1943 struct matrix identity; local
2050 struct matrix identity; local
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 541 final long identity = Binder.clearCallingIdentity(); local
550 Binder.restoreCallingIdentity(identity);
665 final long identity = Binder.clearCallingIdentity();
674 Binder.restoreCallingIdentity(identity);
679 final long identity = Binder.clearCallingIdentity();
687 Binder.restoreCallingIdentity(identity);
692 final long identity = Binder.clearCallingIdentity();
700 Binder.restoreCallingIdentity(identity);
705 final long identity = Binder.clearCallingIdentity();
718 Binder.restoreCallingIdentity(identity);
1323 final long identity = Binder.clearCallingIdentity(); local
1830 final long identity = Binder.clearCallingIdentity(); local
1953 final long identity = Binder.clearCallingIdentity(); local
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.c 480 * sending out EAP-Response/Identity as a response to the first
775 const char *identity, const char *radius_cui)
860 if (identity) {
861 sm->identity = (u8 *) os_strdup(identity);
862 if (sm->identity)
863 sm->identity_len = os_strlen(identity);
892 os_free(sm->identity);
1026 static int eapol_sm_get_eap_user(void *ctx, const u8 *identity,
1033 ret = sm->eapol->cb.get_eap_user(sm->eapol->conf.ctx, identity,
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldLUDecompositionImpl.java 425 FieldMatrix<T> identity = new Array2DRowFieldMatrix<T>(field, m, m); local
427 identity.setEntry(i, i, one);
429 return solve(identity);
  /external/autotest/client/site_tests/network_MobileSuspendResume/
network_MobileSuspendResume.py 198 def connect_wimax(self, service=None, identity='test',
200 service.SetProperty('EAP.Identity', identity)
201 service.SetProperty('EAP.Password', identity)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
__init__.py 30 from boto.cloudfront.identity import OriginAccessIdentity
31 from boto.cloudfront.identity import OriginAccessIdentitySummary
32 from boto.cloudfront.identity import OriginAccessIdentityConfig
210 # Origin Access Identity
215 return self._get_all_objects('origin-access-identity/cloudfront', tags)
218 return self._get_info(access_id, 'origin-access-identity/cloudfront',
223 'origin-access-identity/cloudfront',
233 return self._create_object(config, 'origin-access-identity/cloudfront',
238 'origin-access-identity/cloudfront')
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTransformValuesUnmodifiableIteratorTest.java 166 underlying, Functions.<Integer>identity());
298 = Maps.transformValues(underlying, Functions.<Integer>identity());
305 equalToUnderlying, Functions.<Integer>identity());
  /external/wpa_supplicant_8/src/ap/
accounting.c 76 /* Use 802.1X identity if available */
79 /* Use RADIUS ACL identity if 802.1X provides no identity */
80 if (!val && sta->identity) {
81 val = (u8 *) sta->identity;
82 len = os_strlen(sta->identity);
86 * identity */
  /frameworks/base/libs/hwui/
BakedOpRenderer.cpp 150 .setTransform(Matrix4::identity(), TransformFlags::None)
219 .setTransform(Matrix4::identity(), TransformFlags::None)
236 .setTransform(Matrix4::identity(), TransformFlags::None)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aepack.py 279 identity = (ctor, type)
281 identity = getpstr(rec[38:38+33])
282 return namescript, name, portkind, identity
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 279 identity = (ctor, type)
281 identity = getpstr(rec[38:38+33])
282 return namescript, name, portkind, identity
  /cts/tests/openglperf2/jni/primitive/fullpipeline/
FullPipelineRenderer.cpp 203 mModelMatrix->identity();
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/swf/
test_layer1_workflow_execution.py 87 self._task_list, identity='test worker')
  /external/clang/utils/
clang-completion-mode.el 129 (insert (mapconcat 'identity completion-lines "\n")))
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 30 * equivalences are the {@linkplain #identity() identity equivalence} and {@linkplain #equals equals
133 * For example, {@code Equivalence.identity().onResultOf(Functions.toStringFunction())} is broken
317 public static Equivalence<Object> identity() { method in class:Equivalence
318 return Identity.INSTANCE;
339 static final class Identity extends Equivalence<Object>
342 static final Identity INSTANCE = new Identity();
  /external/llvm/include/llvm/ADT/
SparseSet.h 40 /// - unsigned key, identity index, identity value
41 /// - unsigned key, identity index, fat value providing getSparseSetIndex()
44 /// - unsigned key, remapped index, identity value (virtual registers)
45 /// - pointer key, pointer-derived index, identity value (node+ID)
71 /// identity key/value sets.
118 typename KeyFunctorT = llvm::identity<unsigned>,
  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 70 typedef SparseMultiSet<PhysRegSUOper, llvm::identity<unsigned>, uint16_t>
  /external/mesa3d/src/mesa/tnl/
t_vertex.c 523 vtx->identity[0] = 0.0;
524 vtx->identity[1] = 0.0;
525 vtx->identity[2] = 0.0;
526 vtx->identity[3] = 1.0;
  /external/webrtc/talk/app/webrtc/
webrtcsessiondescriptionfactory.h 49 // DTLS identity request callback class.
57 void OnSuccess(rtc::scoped_ptr<rtc::SSLIdentity> identity) override;
84 // the async DTLS identity generation for WebRtcSession.
85 // It queues the create offer/answer request until the DTLS identity
  /external/webrtc/webrtc/p2p/base/
dtlstransport.h 72 certificate_->identity()));
76 desc << "Local fingerprint does not match identity. Expected: ";
83 "Local fingerprint provided but no identity available.",
91 return BadTransportDescription("Failed to set local identity.",

Completed in 3723 milliseconds

<<11121314151617181920>>