HomeSort by relevance Sort by last modified time
    Searched defs:ident (Results 1 - 25 of 244) sorted by null

1 2 3 4 5 6 7 8 910

  /external/elfutils/0.153/libebl/
eblsymbolbindingname.c 81 char *ident; local
86 && (ident = elf_getident (ebl->elf, NULL)) != NULL
87 && ident[EI_OSABI] == ELFOSABI_LINUX)
eblsymboltypename.c 87 char *ident; local
92 && (ident = elf_getident (ebl->elf, NULL)) != NULL
93 && ident[EI_OSABI] == ELFOSABI_LINUX)
  /external/libgsm/src/
gsm_create.c 7 static char const ident[] = "$Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/gsm_create.c,v 1.4 1996/07/02 09:59:05 jutta Exp $"; variable
  /frameworks/base/services/core/java/com/android/server/net/
NetworkIdentitySet.java 70 for (NetworkIdentity ident : this) {
71 out.writeInt(ident.getType());
72 out.writeInt(ident.getSubType());
73 writeOptionalString(out, ident.getSubscriberId());
74 writeOptionalString(out, ident.getNetworkId());
75 out.writeBoolean(ident.getRoaming());
  /external/clang/test/CodeGenCXX/
apple-kext-linkage.C 27 template <typename X> X ident(X x) { return x; } function
29 int foo(int n) { return ident(n); }
mangle-ms-back-references-pr13207.cpp 187 RetVal ident(int x) { return RetVal(); } function in namespace:fn_space
189 fun_tmpl_recurse<int, fun_tmpl_recurse<int, ident> >(10);
191 // CHECK: "\01??$fun_tmpl_recurse@H$1??$fun_tmpl_recurse@H$1?ident@fn_space@@YA?AURetVal@2@H@Z@fn_space@@YA?AURetVal@1@H@Z@fn_space@@YA?AURetVal@0@H@Z"
192 // CHECK: "\01??$fun_tmpl_recurse@H$1?ident@fn_space@@YA?AURetVal@2@H@Z@fn_space@@YA?AURetVal@0@H@Z"
  /external/clang/lib/Analysis/
CocoaConventions.cpp 94 const IdentifierInfo *ident = fn->getIdentifier(); local
95 if (!ident) return false;
96 StringRef functionName = ident->getName();
  /external/elfutils/0.153/libelf/
elf32_checksum.c 86 unsigned char *ident; local
102 ident = elf->state.ELFW(elf,LIBELFBITS).ehdr->e_ident;
103 same_byte_order = ((ident[EI_DATA] == ELFDATA2LSB
105 || (ident[EI_DATA] == ELFDATA2MSB
172 if (INTUSE(elfw2(LIBELFBITS,xlatetof)) (data, data, ident[EI_DATA])
182 if (INTUSE(elfw2(LIBELFBITS,xlatetom)) (data, data, ident[EI_DATA])
  /frameworks/base/core/jni/
android_view_InputDevice.cpp 56 const InputDeviceIdentifier& ident = deviceInfo.getIdentifier(); local
61 static_cast<int32_t>(ident.vendor), static_cast<int32_t>(ident.product),
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 259 int ident; local
266 while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
275 if (ident == LOOPER_ID_USER) {
  /external/chromium_org/third_party/webrtc/modules/audio_processing/test/android/apmtest/jni/
main.c 259 int ident; local
266 while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
275 if (ident == LOOPER_ID_USER) {
  /external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
main.c 259 int ident; local
266 while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
275 if (ident == LOOPER_ID_USER) {
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.cpp 191 uint32_t ident = *((uint32_t*)buf); local
194 if (ident == 0x5367674f) // 'OggS'
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 69 final NetworkIdentity ident = (NetworkIdentity) obj; local
70 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
71 && Objects.equals(mSubscriberId, ident.mSubscriberId)
72 && Objects.equals(mNetworkId, ident.mNetworkId);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 206 def ident(self): member in class:Process
215 pid = ident
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 206 def ident(self): member in class:Process
215 pid = ident
  /external/ipsec-tools/src/racoon/
localconf.h 88 vchar_t *ident[LC_IDENTTYPE_MAX]; /* base of Identifier payload. */ member in struct:localconf
  /frameworks/base/core/java/android/os/
Looper.java 119 final long ident = Binder.clearCallingIdentity(); local
144 if (ident != newIdent) {
146 + Long.toHexString(ident) + " to 0x"
  /frameworks/base/services/core/java/com/android/server/
DockObserver.java 247 final long ident = Binder.clearCallingIdentity(); local
281 Binder.restoreCallingIdentity(ident);
  /frameworks/base/services/restrictions/java/com/android/server/restrictions/
RestrictionsManagerService.java 94 long ident = Binder.clearCallingIdentity(); local
98 Binder.restoreCallingIdentity(ident);
115 long ident = Binder.clearCallingIdentity(); local
136 Binder.restoreCallingIdentity(ident);
148 long ident = Binder.clearCallingIdentity(); local
168 Binder.restoreCallingIdentity(ident);
181 long ident = Binder.clearCallingIdentity(); local
197 Binder.restoreCallingIdentity(ident);
  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 196 long ident = Binder.clearCallingIdentity(); local
206 Binder.restoreCallingIdentity(ident);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSession.java 195 long ident = Binder.clearCallingIdentity(); local
219 Binder.restoreCallingIdentity(ident);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f
340 def ident(function): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f
340 def ident(function): function
    [all...]
  /system/core/include/utils/
Looper.h 291 * "ident" is an identifier for this event, which is returned from pollOnce().
301 * appropriately reading from the file descriptor. The 'ident' is ignored in this case.
303 * (2) If "callback" is NULL, the 'ident' will be returned by Looper_pollOnce
317 int addFd(int fd, int ident, int events, Looper_callbackFunc callback, void* data);
318 int addFd(int fd, int ident, int events, const sp<LooperCallback>& callback, void* data);
421 int ident; member in struct:android::Looper::Request

Completed in 1183 milliseconds

1 2 3 4 5 6 7 8 910