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

1 2 3 4 5

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AlgorithmIdentifier.java 17 private ASN1ObjectIdentifier objectId;
52 ASN1ObjectIdentifier objectId)
54 this.objectId = objectId;
59 * @param objectId
62 String objectId)
64 this.objectId = new ASN1ObjectIdentifier(objectId);
69 * @param objectId
72 DERObjectIdentifier objectId)
    [all...]
  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 25 private int objectId;
28 return importer.call(objectId, identifier, args);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotProxy.js 55 var objectId = this._nextObjectId++;
56 var proxy = new WebInspector.HeapSnapshotLoaderProxy(this, objectId, profileUid, snapshotReceivedCallback);
57 this._postMessage({callId: this._nextCallId++, disposition: "create", objectId: objectId, methodName: "WebInspector.HeapSnapshotLoader"});
68 disposeObject: function(objectId)
70 this._postMessage({callId: this._nextCallId++, disposition: "dispose", objectId: objectId});
82 * @param {string} objectId
88 callFactoryMethod: function(callback, objectId, methodName, proxyConstructor)
104 this._postMessage({callId: callId, disposition: "factory", objectId: objectId, methodName: methodName, methodArguments: methodArguments, newObjectId: newObjectId})
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PBES2Algorithms.java 18 private ASN1ObjectIdentifier objectId;
29 objectId = (ASN1ObjectIdentifier)e.nextElement();
51 return objectId;
69 v.add(objectId);
EncryptionScheme.java 16 ASN1ObjectIdentifier objectId,
19 this.algId = new AlgorithmIdentifier(objectId, parameters);
KeyDerivationFunc.java 16 ASN1ObjectIdentifier objectId,
19 this.algId = new AlgorithmIdentifier(objectId, parameters);
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 65 const String& objectId,
89 void getCollectionEntries(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CollectionEntry> >* result);
90 void getProperties(ErrorString*, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >* result);
91 void getInternalProperties(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >* result);
92 Node* nodeForObjectId(const String& objectId);
93 void releaseObject(const String& objectId);
100 ScriptValue findObjectById(const String& objectId) const;
InspectorRuntimeAgent.cpp 97 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<JSONArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
99 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId);
114 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
122 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties)
124 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId);
133 injectedScript.getProperties(errorString, objectId, asBool(ownProperties), asBool(accessorPropertiesOnly), &result);
136 injectedScript.getInternalProperties(errorString, objectId, &internalProperties);
142 void InspectorRuntimeAgent::releaseObject(ErrorString*, const String& objectId)
144 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId);
150 injectedScript.releaseObject(objectId);
    [all...]
InspectorRuntimeAgent.h 71 const String& objectId,
79 virtual void releaseObject(ErrorString*, const String& objectId) OVERRIDE FINAL;
80 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) OVERRIDE FINAL;
InjectedScript.cpp 72 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
75 function.appendArgument(objectId);
181 void InjectedScript::getCollectionEntries(ErrorString* errorString, const String& objectId, RefPtr<Array<CollectionEntry> >* result)
184 function.appendArgument(objectId);
195 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Array<PropertyDescriptor> >* properties)
198 function.appendArgument(objectId);
211 void InjectedScript::getInternalProperties(ErrorString* errorString, const String& objectId, RefPtr<Array<InternalPropertyDescriptor> >* properties)
214 function.appendArgument(objectId);
227 Node* InjectedScript::nodeForObjectId(const String& objectId)
233 function.appendArgument(objectId);
    [all...]
InjectedScriptSource.js 296 var objectId = this._wrapObject(object, "");
299 InjectedScriptHost.inspect(objectId, hints);
337 var objectId = "{\"injectedScriptId\":" + injectedScriptId + ",\"id\":" + id + "}";
347 return objectId;
351 * @param {string} objectId
354 _parseObjectId: function(objectId)
356 return nullifyObjectProto(/** @type {!Object} */ (InjectedScriptHost.eval("(" + objectId + ")")));
391 * @param {string} objectId
396 getProperties: function(objectId, ownProperties, accessorPropertiesOnly)
398 var parsedObjectId = this._parseObjectId(objectId);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
HeapSnapshotWorkerDispatcher.js 68 this._objects[data.objectId] = new constructorFunction(this);
72 delete this._objects[data.objectId];
76 var object = this._objects[data.objectId];
82 var object = this._objects[data.objectId];
90 var object = this._objects[data.objectId];
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ContactInfo.java 42 public String objectId;
77 if (!TextUtils.equals(objectId, other.objectId)) return false;
86 .add("photoUri", photoUri).add("objectId", objectId).toString();
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 53 public final int objectId;
59 public static ThreadEvent start(int objectId, int threadId, String threadName,
61 return new ThreadEvent(ThreadEventType.START, objectId, threadId,
69 private ThreadEvent(ThreadEventType type, int objectId, int threadId,
75 this.objectId = objectId;
84 this.objectId = -1;
93 result = 31 * result + objectId;
111 && this.objectId == event.objectId
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationService.java 18 import com.google.ipc.invalidation.external.client.types.ObjectId;
116 public void invalidateUnknownVersion(ObjectId objectId, byte[] ackHandle) {
117 requestSync(objectId, null, null);
129 byte[] clientId, ObjectId objectId, boolean isTransient, String errorMessage) {
130 Log.w(TAG, "Registration failure on " + objectId + " ; transient = " + isTransient
135 List<ObjectId> objectIdAsList = CollectionUtil.newArrayList(objectId);
136 if (readRegistrationsFromPrefs().contains(objectId)) {
    [all...]
InvalidationPreferences.java 14 import com.google.ipc.invalidation.external.client.types.ObjectId;
121 public Set<ObjectId> getSavedObjectIds() {
127 Set<ObjectId> objectIds = new HashSet<ObjectId>(objectIdStrings.size());
129 ObjectId objectId = getObjectId(objectIdString);
130 if (objectId != null) {
131 objectIds.add(objectId);
138 public void setObjectIds(EditContext editContext, Collection<ObjectId> objectIds) {
141 for (ObjectId objectId : objectIds)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapter.java 37 public static final String INVALIDATION_OBJECT_ID_KEY = "objectId";
132 final String objectId = syncAllTypes ? "" : extras.getString(INVALIDATION_OBJECT_ID_KEY);
151 Log.v(TAG, "Received sync tickle for " + resolvedSource + " " + objectId + ".");
152 requestSync(resolvedSource, objectId, version, payload);
169 public void requestSync(int objectSource, String objectId, long version, String payload) {
171 .requestSyncFromNativeChrome(objectSource, objectId, version, payload);
  /packages/apps/Dialer/src/com/android/dialer/service/
CachedNumberLookupService.java 37 public boolean canReportAsInvalid(int sourceType, String objectId);
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 408 + objectId(contextClassLoader));
695 logDiagnostic("Releasing factory for classloader " + objectId(classLoader));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RemoteObject.js 183 var objectId = undefined;
199 objectId = object.objectId;
219 objectId: objectId,
228 * @param {string|undefined} objectId
235 WebInspector.RemoteObjectImpl = function(target, objectId, type, subtype, value, description, preview)
245 if (objectId) {
247 this._objectId = objectId;
266 get objectId()
    [all...]
  /art/runtime/jdwp/
jdwp_event.h 45 ObjectId threadId;
76 ObjectId threadId;
82 ObjectId objectId;

Completed in 708 milliseconds

1 2 3 4 5