HomeSort by relevance Sort by last modified time
    Searched defs:ident (Results 1 - 25 of 518) 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
  /frameworks/base/services/core/java/com/android/server/net/
NetworkIdentitySet.java 95 for (NetworkIdentity ident : this) {
96 out.writeInt(ident.getType());
97 out.writeInt(ident.getSubType());
98 writeOptionalString(out, ident.getSubscriberId());
99 writeOptionalString(out, ident.getNetworkId());
100 out.writeBoolean(ident.getRoaming());
101 out.writeBoolean(ident.getMetered());
102 out.writeBoolean(ident.getDefaultNetwork());
111 for (NetworkIdentity ident : this) {
112 if (ident.getMetered())
    [all...]
  /external/skia/tools/sk_app/android/
main_android.cpp 43 int ident; local
48 while ((ident=ALooper_pollAll(-1, NULL, &events,
  /external/skqp/tools/sk_app/android/
main_android.cpp 43 int ident; local
48 while ((ident=ALooper_pollAll(-1, NULL, &events,
  /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); }
  /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.27/include/vms/
shl.h 35 unsigned char ident[4]; member in struct:vms_shl
  /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)))
  /frameworks/base/core/java/android/hardware/camera2/impl/
CallbackProxies.java 51 final long ident = Binder.clearCallingIdentity(); local
55 Binder.restoreCallingIdentity(ident);
62 final long ident = Binder.clearCallingIdentity(); local
66 Binder.restoreCallingIdentity(ident);
72 final long ident = Binder.clearCallingIdentity(); local
76 Binder.restoreCallingIdentity(ident);
82 final long ident = Binder.clearCallingIdentity(); local
86 Binder.restoreCallingIdentity(ident);
92 final long ident = Binder.clearCallingIdentity(); local
96 Binder.restoreCallingIdentity(ident);
102 final long ident = Binder.clearCallingIdentity(); local
112 final long ident = Binder.clearCallingIdentity(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/slice/
SliceShellCommand.java 72 long ident = Binder.clearCallingIdentity(); local
106 Binder.restoreCallingIdentity(ident);
  /packages/apps/Bluetooth/jni/
permission_helpers.cc 81 int64_t ident = ipcState->clearCallingIdentity(); local
83 ipcState->restoreCallingIdentity(ident);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
scanner.go 70 s.ident()
319 func (s *scanner) ident() { func
  /prebuilts/go/darwin-x86/src/go/types/
typexpr.go 17 // ident type-checks identifier e and initializes x with the value or type of e.
21 func (check *Checker) ident(x *operand, e *ast.Ident, def *Named, path []*TypeName) { func
219 case *ast.Ident:
221 check.ident(&x, e, def, path)
637 add := func(ident *ast.Ident, anonymous bool, pos token.Pos) {
645 name := ident.Name
650 check.recordDef(ident, fld)
706 func anonymousFieldIdent(e ast.Expr) *ast.Ident {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
scanner.go 70 s.ident()
319 func (s *scanner) ident() { func
  /prebuilts/go/linux-x86/src/go/types/
typexpr.go 17 // ident type-checks identifier e and initializes x with the value or type of e.
21 func (check *Checker) ident(x *operand, e *ast.Ident, def *Named, path []*TypeName) { func
219 case *ast.Ident:
221 check.ident(&x, e, def, path)
637 add := func(ident *ast.Ident, anonymous bool, pos token.Pos) {
645 name := ident.Name
650 check.recordDef(ident, fld)
706 func anonymousFieldIdent(e ast.Expr) *ast.Ident {
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
process.py 206 def ident(self): member in class:Process
215 pid = ident
  /external/tensorflow/tensorflow/compiler/aot/
codegen_test.cc 46 string ident; local
48 ident.append(1, c);
51 ident.append(1, c);
54 ident.append(1, c);
56 ident += "_";
57 TF_EXPECT_OK(ValidateCppIdent(ident, ""));
98 string ident; local
100 ident.append(1, c);
103 ident.append(1, c);
106 ident.append(1, c)
    [all...]
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_scope.cc 151 int ident = last_ident; local
153 if (show) ident += 2;
157 show_cnodes = PrintScope(node->show_children, opts, depth + 1, ident);
  /frameworks/base/services/core/java/com/android/server/net/watchlist/
NetworkWatchlistShellCommand.java 91 final long ident = Binder.clearCallingIdentity(); local
106 Binder.restoreCallingIdentity(ident);
  /frameworks/opt/car/services/src/com/android/internal/car/
CarServiceHelperService.java 103 final long ident = Binder.clearCallingIdentity(); local
107 Binder.restoreCallingIdentity(ident);

Completed in 1057 milliseconds

1 2 3 4 5 6 7 8 91011>>