HomeSort by relevance Sort by last modified time
    Searched full:thisobject (Results 1 - 25 of 42) sorted by null

1 2

  /frameworks/wilhelm/src/itf/
IDynamicInterfaceManagement.c 31 IObject *thisObject = InterfaceToIObject(thiz);
32 assert(NULL != thisObject);
34 const ClassTable *clazz = thisObject->mClass;
38 SLuint8 *interfaceStateP = &thisObject->mInterfaceStates[index];
42 object_lock_exclusive(thisObject);
50 object_unlock_exclusive(thisObject);
55 void *thisItf = (char *) thisObject + offset;
65 object_lock_exclusive(thisObject);
94 object_unlock_exclusive(thisObject);
115 IObject *thisObject = InterfaceToIObject(thiz)
    [all...]
I3DCommit.c 27 IObject *thisObject = InterfaceToIObject(thiz);
28 object_lock_exclusive(thisObject);
33 object_cond_wait(thisObject);
36 object_unlock_exclusive(thisObject);
48 IObject *thisObject = InterfaceToIObject(thiz);
49 object_lock_exclusive(thisObject);
51 object_unlock_exclusive(thisObject);
IMuteSolo.c 27 IObject *thisObject = thiz->mThis;
28 if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(thisObject)) {
31 CAudioPlayer *ap = (CAudioPlayer *) thisObject;
66 IObject *thisObject = thiz->mThis;
67 if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(thisObject)) {
70 CAudioPlayer *ap = (CAudioPlayer *) thisObject;
99 IObject *thisObject = thiz->mThis;
100 if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(thisObject)) {
103 CAudioPlayer *ap = (CAudioPlayer *) thisObject;
138 IObject *thisObject = thiz->mThis
    [all...]
IDynamicSource.c 38 IObject *thisObject = InterfaceToIObject(thiz);
39 object_lock_exclusive(thisObject);
42 object_unlock_exclusive(thisObject);
I3DGrouping.c 38 IObject *thisObject = InterfaceToIObject(thiz);
39 unsigned id = thisObject->mInstanceID;
IOutputMixExt.c 177 IObject *thisObject = thiz->mThis;
179 object_lock_exclusive(thisObject);
183 IEngine *thisEngine = &thisObject->mEngine->mEngine;
185 assert(&thisEngine->mOutputMix->mObject == thisObject);
191 object_cond_broadcast(thisObject);
325 object_unlock_exclusive(thisObject);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
ThisObjectTest.java 37 * JDWP Unit test for StackFrame.ThisObject command.
48 * This testcase exercises StackFrame.ThisObject command.
50 * checks if StackFrame.ThisObject command returns correct data for each stack frame
120 // get ThisObject
121 logWriter.println("==> Send StackFrame::ThisObject command...");
131 TaggedObject thisObject = reply.getNextValueAsTaggedObject();
132 logWriter.println("==> thisObject:");
133 logWriter.println("==> tag=" + thisObject.tag + "("
134 + JDWPConstants.Tag.getName(thisObject.tag) + ")");
135 logWriter.println("==> id=" + thisObject.objectID)
    [all...]
ProxyThisObjectTest.java 29 * JDWP Unit test for StackFrame.ThisObject command on proxy method.
40 logWriter.println("==> Send StackFrame::ThisObject command...");
47 checkReplyPacket(reply, "StackFrame.ThisObject");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DisposeDuringInvokeDebuggee.java 31 public static final String THIS_FIELD_NAME = "thisObject";
34 public static DisposeDuringInvokeDebuggee thisObject;
69 thisObject = this;
  /external/v8/test/mjsunit/compiler/
regress-serialized-slots.js 37 Function.prototype.bind = function(thisObject)
43 // Note outer function parameter access (|thisObject|).
45 thisObject,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rlcompleter.py 133 thisobject = eval(expr, self.namespace)
138 words = dir(thisobject)
142 if hasattr(thisobject, '__class__'):
144 words.extend(get_class_members(thisobject.__class__))
148 if word[:n] == attr and hasattr(thisobject, word):
149 val = getattr(thisobject, word)
  /prebuilts/gdb/linux-x86/lib/python2.7/
rlcompleter.py 133 thisobject = eval(expr, self.namespace)
138 words = dir(thisobject)
142 if hasattr(thisobject, '__class__'):
144 words.extend(get_class_members(thisobject.__class__))
148 if word[:n] == attr and hasattr(thisobject, word):
149 val = getattr(thisobject, word)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rlcompleter.py 133 thisobject = eval(expr, self.namespace)
138 words = dir(thisobject)
142 if hasattr(thisobject, '__class__'):
144 words.extend(get_class_members(thisobject.__class__))
148 if word[:n] == attr and hasattr(thisobject, word):
149 val = getattr(thisobject, word)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rlcompleter.py 133 thisobject = eval(expr, self.namespace)
138 words = dir(thisobject)
142 if hasattr(thisobject, '__class__'):
144 words.extend(get_class_members(thisobject.__class__))
148 if word[:n] == attr and hasattr(thisobject, word):
149 val = getattr(thisobject, word)
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaPersistModule.java 122 public Object invoke(final Object thisObject, final Method method, final Object[] args)
142 return method.invoke(thisObject, args);
  /external/pdfium/xfa/src/fxjse/src/
dynprop.cpp 285 v8::Local<v8::Object> thisObject = info.This();
293 lpThisValue->ForceSetValue(thisObject);
308 v8::Local<v8::Object> thisObject = info.This();
316 lpThisValue->ForceSetValue(thisObject);
328 v8::Local<v8::Object> thisObject = info.This();
334 lpThisValue->ForceSetValue(thisObject);
347 v8::Local<v8::Object> thisObject = info.This();
353 lpThisValue->ForceSetValue(thisObject);
  /frameworks/base/telecomm/java/android/telecom/
Conference.java 651 "[State: %s,Capabilites: %s, VideoState: %s, VideoProvider: %s, ThisObject %s]",
  /art/runtime/jdwp/
jdwp_handler.cc     [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.2.0/
gradle-1.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.2.0-alpha1/
gradle-1.2.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.2.0-beta4/
gradle-1.2.0-beta4.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.2.0-rc1/
gradle-1.2.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.2.1/
gradle-1.2.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.2.2/
gradle-1.2.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.2.3/
gradle-1.2.3.jar 

Completed in 672 milliseconds

1 2