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

1 2 3 4

  /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/elfutils/libelf/
elf32_checksum.c 52 unsigned char *ident; local
68 ident = elf->state.ELFW(elf,LIBELFBITS).ehdr->e_ident;
69 same_byte_order = ((ident[EI_DATA] == ELFDATA2LSB
71 || (ident[EI_DATA] == ELFDATA2MSB
125 if (INTUSE(elfw2(LIBELFBITS,xlatetof)) (data, data, ident[EI_DATA])
132 if (INTUSE(elfw2(LIBELFBITS,xlatetom)) (data, data, ident[EI_DATA])
  /external/webkit/JavaScriptCore/parser/
Nodes.cpp 153 append(parameter->ident());
166 void FunctionBodyNode::finishParsing(const SourceCode& source, ParameterNode* firstParameter, const Identifier& ident)
169 finishParsing(FunctionParameters::create(firstParameter), ident); local
172 void FunctionBodyNode::finishParsing(PassRefPtr<FunctionParameters> parameters, const Identifier& ident)
176 m_ident = ident;
  /external/webkit/WebCore/bridge/c/
c_class.cpp 83 NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii()); local
86 if (_isa->hasMethod && _isa->hasMethod(obj, ident)){
87 Method* aMethod = new CMethod(ident); // deleted in the CClass destructor
104 NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii());
107 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
108 aField = new CField(ident); // deleted in the CClass destructor
c_instance.cpp 112 NPIdentifier ident = method->identifier(); local
113 if (!_object->_class->hasMethod(_object, ident))
131 retval = _object->_class->invoke(_object, ident, cArgs.data(), count, &resultVariant);
  /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) {
  /development/simulator/wrapsim/
DevEvent.c 20 struct input_id ident; member in struct:EventState
72 eventState->ident.bustype = 0;
73 eventState->ident.vendor = 0;
74 eventState->ident.product = 0;
75 eventState->ident.version = 0;
181 memcpy(argp, &state->ident, sizeof(struct input_id));
  /external/bluetooth/bluez/tools/
l2ping.c 49 static int ident = 200; variable
137 id = ident;
145 send_cmd->ident = id;
193 if (recv_cmd->ident != id)
231 id - ident, tv2fl(tv_diff));
236 printf("no response from %s: id %d\n", svr, id - ident);
240 id = ident;
  /external/dropbear/
signkey.c 92 unsigned char* ident; local
99 ident = buf_getstring(buf, &len);
100 keytype = signkey_type_from_name(ident, len);
101 m_free(ident);
144 unsigned char* ident; local
151 ident = buf_getstring(buf, &len);
152 keytype = signkey_type_from_name(ident, len);
153 m_free(ident);
395 unsigned char * ident = NULL; local
401 ident = buf_getstring(buf, &identlen)
    [all...]
  /external/quake/quake/src/QW/client/
spritegn.h 71 int ident; member in struct:__anon6632
modelgen.h 60 int ident; member in struct:__anon6598
  /external/quake/quake/src/WinQuake/
spritegn.h 71 int ident; member in struct:__anon7077
modelgen.h 60 int ident; member in struct:__anon6958
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 204 long ident = Binder.clearCallingIdentity(); local
217 Binder.restoreCallingIdentity(ident);
230 long ident = Binder.clearCallingIdentity(); local
243 Binder.restoreCallingIdentity(ident);
  /frameworks/base/include/utils/
Looper.h 127 * "ident" is an identifier for this event, which is returned from ALooper_pollOnce().
137 * appropriately reading from the file descriptor. The 'ident' is ignored in this case.
139 * (2) If "callback" is NULL, the 'ident' will be returned by ALooper_pollOnce
148 int addFd(int fd, int ident, int events, ALooper_callbackFunc callback, void* data);
194 int ident; member in struct:android::Looper::Request
  /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 114 final long ident = Binder.clearCallingIdentity(); local
138 if (ident != newIdent) {
140 + Long.toHexString(ident) + " to 0x"
  /external/qemu/
trace_common.h 41 char ident[16]; member in struct:TraceHeader
  /external/webkit/WebCore/css/
CSSPrimitiveValue.h 91 static PassRefPtr<CSSPrimitiveValue> createIdentifier(int ident);
177 CSSPrimitiveValue(int ident);
205 int ident; member in union:WebCore::CSSPrimitiveValue::__anon8021
  /frameworks/base/core/java/android/app/admin/
DeviceAdminInfo.java 108 public final int ident; field in class:DeviceAdminInfo.PolicyInfo
114 ident = identIn;
144 sRevKnownPolicies.put(pi.ident, pi);
145 sKnownPolicies.put(pi.tag, pi.ident);
351 if (usesPolicy(pi.ident)) {
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 472 int ident; local
479 while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
  /external/bluetooth/bluez/lib/bluetooth/
l2cap.h 96 uint8_t ident; member in struct:__anon1739
  /external/bluetooth/bluez/src/
storage.c 730 char *ident = services->data; local
733 ident, services->next ? " " : "");
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 103 Identifier& ident = codeBlock->identifier(property); local
107 if (o->getPropertySlot(callFrame, ident, slot)) {
108 JSValue result = slot.getValue(callFrame, ident);
116 exceptionValue = createUndefinedVariableError(callFrame, ident, vPC - codeBlock->instructions().begin(), codeBlock);
136 Identifier& ident = codeBlock->identifier(property); local
140 if (o->getPropertySlot(callFrame, ident, slot)) {
141 JSValue result = slot.getValue(callFrame, ident);
149 exceptionValue = createUndefinedVariableError(callFrame, ident, vPC - codeBlock->instructions().begin(), codeBlock);
168 Identifier& ident = codeBlock->identifier(property); local
170 if (globalObject->getPropertySlot(callFrame, ident, slot))
215 Identifier& ident = codeBlock->identifier(property); local
806 const Identifier& ident = codeBlock->variable(i); local
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 155 int ident = currentInstruction[3].u.operand; local
159 stubCall.addArgument(ImmPtr(&(m_codeBlock->identifier(ident))));
174 int ident = currentInstruction[2].u.operand; local
179 stubCall.addArgument(ImmPtr(&(m_codeBlock->identifier(ident))));
255 int ident = currentInstruction[3].u.operand; local
257 compileGetByIdSlowCase(dst, base, &(m_codeBlock->identifier(ident)), iter, true);
415 int ident = currentInstruction[3].u.operand; local
417 compileGetByIdSlowCase(dst, base, &(m_codeBlock->identifier(ident)), iter);
420 void JIT::compileGetByIdSlowCase(int dst, int base, Identifier* ident, Vector<SlowCaseEntry>::iterator& iter, bool isMethodCheck)
437 stubCall.addArgument(ImmPtr(ident));
491 int ident = currentInstruction[2].u.operand; local
    [all...]

Completed in 2359 milliseconds

1 2 3 4