HomeSort by relevance Sort by last modified time
    Searched defs:ident (Results 26 - 50 of 84) sorted by null

12 3 4

  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 486 long ident = Binder.clearCallingIdentity(); local
492 Binder.restoreCallingIdentity(ident);
504 long ident = Binder.clearCallingIdentity(); local
510 Binder.restoreCallingIdentity(ident);
522 long ident = Binder.clearCallingIdentity(); local
532 Binder.restoreCallingIdentity(ident);
UiModeManagerService.java 382 long ident = Binder.clearCallingIdentity(); local
385 Binder.restoreCallingIdentity(ident);
472 long ident = Binder.clearCallingIdentity(); local
560 Binder.restoreCallingIdentity(ident);
    [all...]
DevicePolicyManagerService.java 547 long ident = Binder.clearCallingIdentity(); local
559 Binder.restoreCallingIdentity(ident);
606 long ident = Binder.clearCallingIdentity(); local
610 Binder.restoreCallingIdentity(ident);
779 long ident = Binder.clearCallingIdentity(); local
792 Binder.restoreCallingIdentity(ident);
808 long ident = Binder.clearCallingIdentity(); local
858 long ident = Binder.clearCallingIdentity(); local
890 long ident = Binder.clearCallingIdentity(); local
935 long ident = Binder.clearCallingIdentity(); local
955 long ident = Binder.clearCallingIdentity(); local
977 long ident = Binder.clearCallingIdentity(); local
    [all...]
WallpaperManagerService.java 342 final long ident = Binder.clearCallingIdentity(); local
352 Binder.restoreCallingIdentity(ident);
430 final long ident = Binder.clearCallingIdentity(); local
440 Binder.restoreCallingIdentity(ident);
462 final long ident = Binder.clearCallingIdentity(); local
466 Binder.restoreCallingIdentity(ident);
787 String ident = null; local
790 ident = resName.substring(slash+1);
798 if (pkg != null && ident != null && type != null) {
808 + " ident=" + ident)
    [all...]
InputMethodManagerService.java 815 final long ident = Binder.clearCallingIdentity(); local
820 Binder.restoreCallingIdentity(ident);
940 long ident = Binder.clearCallingIdentity(); local
994 final long ident = Binder.clearCallingIdentity(); local
1015 long ident = Binder.clearCallingIdentity(); local
1080 long ident = Binder.clearCallingIdentity(); local
1137 long ident = Binder.clearCallingIdentity(); local
1250 long ident = Binder.clearCallingIdentity(); local
1266 long ident = Binder.clearCallingIdentity(); local
1282 long ident = Binder.clearCallingIdentity(); local
1620 long ident = Binder.clearCallingIdentity(); local
    [all...]
  /external/tcpdump/
print-isakmp.c 135 "none", "base", "ident", "auth", "agg", "inf", NULL, NULL,
426 u_int32_t doi, sit, ident; local
460 TCHECK2(*(ext + 1), sizeof(ident));
461 safememcpy(&ident, ext + 1, sizeof(ident));
462 printf(" ident=%u", (u_int32_t)ntohl(ident));
463 np += sizeof(ident);
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 166 bool BytecodeGenerator::addVar(const Identifier& ident, bool isConstant, RegisterID*& r0)
170 pair<SymbolTable::iterator, bool> result = symbolTable().add(ident.ustring().rep(), newEntry);
182 bool BytecodeGenerator::addGlobalVar(const Identifier& ident, bool isConstant, RegisterID*& r0)
186 pair<SymbolTable::iterator, bool> result = symbolTable().add(ident.ustring().rep(), newEntry);
260 globalObject->removeDirect(function->ident()); // Make sure our new function is not shadowed by an old property.
261 emitNewFunction(addGlobalVar(function->ident(), false), function);
276 globalObject->putWithAttributes(exec, function->ident(), new (exec) JSFunction(exec, makeFunction(exec, function), scopeChain.node()), DontDelete);
343 const Identifier& ident = function->ident(); local
344 m_functions.add(ident.ustring().rep())
    [all...]
NodesCodegen.cpp 1536 const Identifier& ident = static_cast<ResolveNode*>(m_lexpr)->identifier(); local
1552 const Identifier& ident = assignNode->identifier(); local
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp 1210 Identifier& ident = stackFrame.args[1].identifier(); local
1226 Identifier& ident = stackFrame.args[1].identifier(); local
1246 Identifier& ident = stackFrame.args[1].identifier(); local
1274 Identifier& ident = stackFrame.args[1].identifier(); local
1346 Identifier& ident = stackFrame.args[1].identifier(); local
1368 Identifier& ident = stackFrame.args[1].identifier(); local
1852 Identifier& ident = stackFrame.args[0].identifier(); local
2276 Identifier& ident = stackFrame.args[0].identifier(); local
2299 Identifier& ident = stackFrame.args[1].identifier(); local
2604 Identifier& ident = stackFrame.args[0].identifier(); local
    [all...]
JITOpcodes.cpp 711 Identifier* ident = &m_codeBlock->identifier(currentInstruction[3].u.operand); local
718 stubCall.addArgument(ImmPtr(ident));
    [all...]
  /external/wpa_supplicant/
eap_ttls.c 65 u8 ident; member in struct:eap_ttls_data
693 data->ident = challenge[EAP_TTLS_MSCHAPV2_CHALLENGE_LEN];
694 *pos++ = data->ident;
797 data->ident = challenge[EAP_TTLS_MSCHAP_CHALLENGE_LEN];
798 *pos++ = data->ident;
926 data->ident = challenge[EAP_TTLS_CHAP_CHALLENGE_LEN];
927 *pos++ = data->ident;
929 /* MD5(Ident + Password + Challenge) */
930 addr[0] = &data->ident;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_ttls.c 70 u8 ident; member in struct:eap_ttls_data
687 data->ident = challenge[EAP_TTLS_MSCHAPV2_CHALLENGE_LEN];
688 *pos++ = data->ident;
771 data->ident = challenge[EAP_TTLS_MSCHAP_CHALLENGE_LEN];
772 *pos++ = data->ident;
918 data->ident = challenge[EAP_TTLS_CHAP_CHALLENGE_LEN];
919 *pos++ = data->ident;
921 /* MD5(Ident + Password + Challenge) */
922 chap_md5(data->ident, password, password_len, challenge,
    [all...]
  /frameworks/base/core/java/android/app/
ApplicationThreadNative.java 123 int ident = data.readInt(); local
130 scheduleLaunchActivity(intent, b, ident, info, state, ri, pi,
486 public final void scheduleLaunchActivity(Intent intent, IBinder token, int ident,
494 data.writeInt(ident);
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp 688 long ident = *((long*)buf); local
691 if (ident == 0x5367674f) // 'OggS'
695 if (ident == 0x75b22630) {
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 87 const uint32_t ident);
394 Public() : sourcePos(), ident(0) { }
399 comment(_comment), ident(_ident) { }
401 comment(o.comment), ident(o.ident) { }
407 ident = o.ident;
413 uint32_t ident; member in class:ResourceTable::Public
425 const uint32_t ident);
  /hardware/qcom/media/mm-video/vidc/venc/src/
omx_video_base.cpp 291 unsigned ident; local
310 pThis->m_cmd_q.pop_entry(&p1,&p2,&ident);
318 pThis->m_ftb_q.pop_entry(&p1,&p2,&ident);
327 pThis->m_etb_q.pop_entry(&p1,&p2,&ident);
336 id = ident;
1260 unsigned ident = 0; local
1307 unsigned ident = 0; local
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 222 const char* ident; /* field identifier */ member in struct:T1_FieldRec_
    [all...]
  /external/grub/netboot/
etherboot.h 281 unsigned short ident; member in struct:iphdr
  /external/ipsec-tools/src/racoon/
ipsec_doi.c 3676 vchar_t ident; local
3755 vchar_t *ident = NULL; local
    [all...]
  /external/ping/
ping.c 124 int ident; /* process id to identify our packets */ variable
542 ident = getpid() & 0xFFFF;
1020 icmph.un.echo.id != ident) {
1076 icp->un.echo.id = ident; /* ID */
1155 if (icp->un.echo.id != ident)
1184 icp1->un.echo.id != ident)
    [all...]
  /external/quake/quake/src/QW/client/
gl_model.h 296 int ident; member in struct:__anon6561
  /external/quake/quake/src/WinQuake/
gl_model.h 292 int ident; member in struct:__anon6924
  /frameworks/base/core/jni/
android_util_AssetManager.cpp 593 jint ident = am->getResources().identifierForName( local
604 return ident;
703 jint ident,
716 ssize_t block = res.getResource(ident, &value, false, &typeSpecFlags, &config);
723 uint32_t ref = ident;
737 jint ident, jint bagEntryId,
754 ssize_t entryCount = res.getBagLocked(ident, &entry, &typeSpecFlags);
757 if (((uint32_t)bagEntryId) == entry->map.name.ident) {
770 uint32_t ref = ident;
852 JNIEnv* env, jobject clazz, jint themeInt, jint ident, jobject outValue, jboolean resolve
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarPolicy.java 1232 long ident = Binder.clearCallingIdentity(); local
    [all...]
StatusBarService.java 530 String ident = notification.pkg + "/0x" + Integer.toHexString(notification.id); local
531 Slog.e(TAG, "couldn't inflate view for notification " + ident, exception);
    [all...]

Completed in 1781 milliseconds

12 3 4