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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libebl/
eblsymbolbindingname.c 56 char *ident; local
61 && (ident = elf_getident (ebl->elf, NULL)) != NULL
62 && ident[EI_OSABI] == ELFOSABI_LINUX)
eblsymboltypename.c 62 char *ident; local
67 && (ident = elf_getident (ebl->elf, NULL)) != NULL
68 && 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
  /external/clang/test/CodeGenCXX/
apple-kext-linkage.cpp 27 template <typename X> X ident(X x) { return x; } function
29 int foo(int n) { return ident(n); }
  /frameworks/base/services/core/java/com/android/server/net/
NetworkIdentitySet.java 84 for (NetworkIdentity ident : this) {
85 out.writeInt(ident.getType());
86 out.writeInt(ident.getSubType());
87 writeOptionalString(out, ident.getSubscriberId());
88 writeOptionalString(out, ident.getNetworkId());
89 out.writeBoolean(ident.getRoaming());
90 out.writeBoolean(ident.getMetered());
99 for (NetworkIdentity ident : this) {
100 if (ident.getRoaming()) {
129 final NetworkIdentity ident = iterator().next()
    [all...]
  /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/libelf/
elf32_checksum.c 59 unsigned char *ident; local
75 ident = elf->state.ELFW(elf,LIBELFBITS).ehdr->e_ident;
76 same_byte_order = ((ident[EI_DATA] == ELFDATA2LSB
78 || (ident[EI_DATA] == ELFDATA2MSB
145 if (INTUSE(elfw2(LIBELFBITS,xlatetof)) (data, data, ident[EI_DATA])
155 if (INTUSE(elfw2(LIBELFBITS,xlatetom)) (data, data, ident[EI_DATA])
  /frameworks/base/core/jni/
android_view_InputDevice.cpp 58 const InputDeviceIdentifier& ident = deviceInfo.getIdentifier(); local
66 static_cast<int32_t>(ident.vendor), static_cast<int32_t>(ident.product),
  /toolchain/binutils/binutils-2.25/include/vms/
shl.h 35 unsigned char ident[4]; member in struct:vms_shl
internal.h 44 unsigned int ident; /* Ident for global section. */ member in struct:vms_internal_gbl_eisd
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
multiprocessing_shim.py 80 def ident(self): member in class:ProcessShim
81 return self._proc.ident
  /external/elfutils/libdwfl/
dwfl_module_getsym.c 121 char *ident; local
127 && (ident = elf_getident (elf, NULL)) != NULL
128 && ident[EI_OSABI] == ELFOSABI_LINUX)))
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btCapsuleShape.cpp 127 btTransform ident; local
128 ident.setIdentity();
btTriangleMeshShape.cpp 193 btTransform ident; local
194 ident.setIdentity();
196 SupportVertexCallback supportCallback(vec,ident);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btCompoundFromGimpact.h 72 btTransform ident; local
73 ident.setIdentity();
74 m_colShape->addChildShape(ident,tet);
  /external/skia/platform_tools/android/apps/visualbench/src/main/jni/
main.cpp 100 int ident; local
105 while ((ident=ALooper_pollAll(0, nullptr, &events, (void**)&source)) >= 0) {
  /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/guava/guava/src/com/google/common/eventbus/
AnnotatedSubscriberFinder.java 106 MethodIdentifier ident = (MethodIdentifier) o; local
107 return name.equals(ident.name) && parameterTypes.equals(ident.parameterTypes);
127 MethodIdentifier ident = new MethodIdentifier(superClazzMethod); local
128 if (!identifiers.containsKey(ident)) {
129 identifiers.put(ident, superClazzMethod);
  /external/libxml2/os400/
xmlcatlgcl.c 51 paramlist(256, char) ident; /* vary2(256). */ member in struct:__anon16893
213 vary4vargquote(&cmd, (vary2 *) &saelp->ident);
  /external/webrtc/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) {
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 79 final NetworkIdentity ident = (NetworkIdentity) obj; local
80 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
81 && Objects.equals(mSubscriberId, ident.mSubscriberId)
82 && Objects.equals(mNetworkId, ident.mNetworkId)
83 && mMetered == ident.mMetered;
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DevicePolicyManagerServiceMigrationTest.java 130 final long ident = mContext.binder.clearCallingIdentity(); local
139 mContext.binder.restoreCallingIdentity(ident);
245 final long ident = mContext.binder.clearCallingIdentity(); local
254 mContext.binder.restoreCallingIdentity(ident);
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
process.py 206 def ident(self): member in class:Process
215 pid = ident
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
process.py 206 def ident(self): member in class:Process
215 pid = ident
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 206 def ident(self): member in class:Process
215 pid = ident

Completed in 1219 milliseconds

1 2 3 4 5 6 7 8 91011>>