HomeSort by relevance Sort by last modified time
    Searched refs:objectId (Results 1 - 25 of 29) sorted by null

1 2

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
AlgorithmIdentifier.java 15 private DERObjectIdentifier objectId;
53 DERObjectIdentifier objectId)
55 this.objectId = objectId;
59 String objectId)
61 this.objectId = new DERObjectIdentifier(objectId);
65 DERObjectIdentifier objectId,
69 this.objectId = objectId;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
EncryptionScheme.java 12 DERObject objectId;
20 objectId = (DERObject)seq.getObjectAt(0);
33 v.add(objectId);
PBES2Algorithms.java 18 private DERObjectIdentifier objectId;
29 objectId = (DERObjectIdentifier)e.nextElement();
51 return objectId;
69 v.add(objectId);
  /external/yaffs2/yaffs2/
yaffs_packedtags1.c 9 pt->objectId = t->objectId;
29 t->objectId = pt->objectId;
yaffs_packedtags1.h 12 unsigned objectId:18;
yaffs_packedtags2.h 11 unsigned objectId;
yaffs_packedtags2.c 50 pt->t.objectId, pt->t.chunkId, pt->t.byteCount,
60 TENDSTR), t->eccResult, t->blockBad, t->chunkUsed, t->objectId,
71 pt->t.objectId = t->objectId;
85 pt->t.objectId &= ~EXTRA_OBJECT_TYPE_MASK;
86 pt->t.objectId |=
153 t->objectId = pt->t.objectId;
174 pt->t.objectId >> EXTRA_OBJECT_TYPE_SHIFT;
175 t->objectId &= ~EXTRA_OBJECT_TYPE_MASK
    [all...]
yaffs_guts.c 92 static int yaffs_TagsMatch(const yaffs_ExtendedTags * tags, int objectId,
984 yaffs_ExtendedTags * tags, int objectId,
995 if (yaffs_TagsMatch(tags, objectId, chunkInInode)) {
1073 in->objectId,
1193 obj->objectId));
    [all...]
yaffs_guts.h 138 unsigned objectId:18;
173 unsigned objectId; /* If 0 then this is not part of an object (unused) */
436 __u32 objectId; /* the object id value */
494 __u32 objectId;
yaffs_nand.c 72 tags->objectId, tags->chunkId));
yaffs_tagscompat.c 417 tags.objectId = eTags->objectId;
469 eTags->objectId = tags.objectId;
yaffs_checkptrw.c 108 dev->checkpointNextBlock = tags.objectId;
191 tags.objectId = dev->checkpointNextBlock; /* Hint to next place to look */
yaffs_fs.c 334 yaffs_InodeToObject(dir)->objectId, dentry->d_name.name));
347 (KERN_DEBUG "yaffs_lookup found %d\n", obj->objectId));
463 (KERN_DEBUG "yaffs_file_flush object %d (%s)\n", obj->objectId,
703 inode->i_ino = obj->objectId;
789 (KERN_DEBUG "yaffs_get_inode for object %d\n", obj->objectId));
791 inode = iget(sb, obj->objectId);
830 n, obj->objectId, ipos));
974 parent->objectId, parent->variantType));
1031 obj->objectId, atomic_read(&inode->i_count)));
1256 yaffs_InodeToObject(inode)->objectId));
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ObjectProxy.js 31 WebInspector.ObjectProxy = function(injectedScriptId, objectId, path, protoDepth, description, hasChildren)
33 this.objectId = objectId;
InjectedScript.js 38 var objectId;
42 objectId = "object#" + id;
43 InjectedScript.idToWrappedObject[objectId] = object;
50 group.push(objectId);
52 return InjectedScript.createProxyObject(object, objectId);
55 InjectedScript.unwrapObject = function(objectId) {
56 return InjectedScript.idToWrappedObject[objectId];
502 var childObjectProxy = new InjectedScript.createProxyObject(childObject, objectProxy.objectId, abbreviate);
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 388 private final int objectId;
393 private static ThreadEvent start(int objectId, int threadId, Thread thread) {
394 return new ThreadEvent(ThreadEventType.START, objectId, threadId, thread);
401 private ThreadEvent(ThreadEventType type, int objectId, int threadId, Thread thread) {
403 this.objectId = objectId;
411 this.objectId = -1;
423 objectId, threadId, threadName, groupName);
  /dalvik/vm/jdwp/
JdwpHandler.c 116 * If "isConstructor" is set, this returns "objectId" rather than the
121 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
130 assert(!isConstructor || objectId != 0);
134 LOGV(" --> threadId=%llx objectId=%llx\n", threadId, objectId);
142 argArray = (ObjectId*) malloc(sizeof(ObjectId) * numArgs);
165 ObjectId exceptObjId
    [all...]
JdwpEvent.h 40 ObjectId threadId;
71 ObjectId threadId;
77 ObjectId objectId;
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 403 + objectId(contextClassLoader));
690 logDiagnostic("Releasing factory for classloader " + objectId(classLoader));
    [all...]
  /dalvik/vm/
Debugger.h 100 ObjectId exceptObj;
163 ObjectId dvmDbgGetClassObject(RefTypeId id);
165 ObjectId dvmDbgGetClassLoader(RefTypeId id);
169 void dvmDbgGetVisibleClassList(ObjectId classLoaderId, u4* pNumClasses,
175 void dvmDbgGetObjectType(ObjectId objectId, u1* pRefTypeTag,
180 char* dvmDbgGetObjectTypeName(ObjectId objectId);
182 int dvmDbgGetObjectTag(ObjectId objectId, const char* type)
    [all...]
Debugger.c 75 ThreadId we pass to the debugger is the ObjectId for the java/lang/Thread
90 #define THREAD_GROUP_ALL ((ObjectId) 0x12345) // magic, internal-only value
187 static bool lookupId(ObjectId id)
203 * This is used for both ObjectId and RefTypeId. In theory we don't have
209 static ObjectId registerObject(const Object* obj, RegistryType type, bool reg)
211 ObjectId id;
219 id = (ObjectId)(u4)obj | ((u8) type) << 32;
274 * Note this actually takes both ObjectId and RefTypeId.
277 static bool objectIsRegistered(ObjectId id, RegistryType type)
313 * Convert to/from an ObjectId
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 479 classLoaderName = objectId(classLoader);
    [all...]
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 207 pt->t.objectId = SWAP32(pt->t.objectId);
229 t.objectId = objId;
  /external/webkit/WebKit/chromium/src/js/
DevTools.js 400 devtools.tools.getDebuggerAgent().resolveScope(objectProxy.objectId, callback);
402 devtools.tools.getDebuggerAgent().resolveChildren(objectProxy.objectId, callback, false);
DebuggerAgent.js 588 var scope = frame.scopeChain[i].objectId;
626 var props = result.value.objectId.properties;
    [all...]

Completed in 614 milliseconds

1 2