HomeSort by relevance Sort by last modified time
    Searched refs:nativeHandle (Results 1 - 20 of 20) sorted by null

  /frameworks/base/core/java/android/nfc/
INfcTag.aidl 28 int close(int nativeHandle);
29 int connect(int nativeHandle, int technology);
30 int reconnect(int nativeHandle);
31 int[] getTechList(int nativeHandle);
32 boolean isNdef(int nativeHandle);
33 boolean isPresent(int nativeHandle);
34 TransceiveResult transceive(int nativeHandle, in byte[] data, boolean raw);
36 NdefMessage ndefRead(int nativeHandle);
37 int ndefWrite(int nativeHandle, in NdefMessage msg);
38 int ndefMakeReadOnly(int nativeHandle);
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
Mutex.h 94 ** Function: nativeHandle
101 pthread_mutex_t* nativeHandle ();
Mutex.cpp 129 ** Function: nativeHandle
136 pthread_mutex_t* Mutex::nativeHandle ()
CondVar.cpp 80 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle());
124 int waitResult = pthread_cond_timedwait_monotonic_np (&mCondition, mutex.nativeHandle(), &absoluteTime);
  /external/webkit/Source/WebCore/bridge/jni/
jni_jsobject.mm 190 jlong nativeHandle = context->nativeHandle;
191 if (nativeHandle == UndefinedHandle || nativeHandle == 0) {
196 result.j = JavaJSObject::createNative(nativeHandle);
199 JSObject *imp = jlong_to_impptr(nativeHandle);
207 result.l = JavaJSObject(nativeHandle).call(context->string, context->args);
212 result.l = JavaJSObject(nativeHandle).eval(context->string);
217 result.l = JavaJSObject(nativeHandle).getMember(context->string);
222 JavaJSObject(nativeHandle).setMember(context->string, context->value)
    [all...]
jni_jsobject.h 68 jlong nativeHandle;
80 JavaJSObject(jlong nativeHandle);
82 static jlong createNative(jlong nativeHandle);
116 jlong KJS_JSCreateNativeJSObject(JNIEnv*, jclass, jstring jurl, jlong nativeHandle, jboolean ctx);
  /packages/apps/Nfc/nci/jni/
Mutex.h 90 ** Function: nativeHandle
97 pthread_mutex_t* nativeHandle ();
Mutex.cpp 124 ** Function: nativeHandle
131 pthread_mutex_t* Mutex::nativeHandle ()
CondVar.cpp 76 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle());
120 int waitResult = pthread_cond_timedwait_monotonic_np (&mCondition, mutex.nativeHandle(), &absoluteTime);
  /external/webkit/Source/WebCore/bridge/
runtime_root.h 61 static PassRefPtr<RootObject> create(const void* nativeHandle, JSGlobalObject*);
70 const void* nativeHandle() const;
84 RootObject(const void* nativeHandle, JSGlobalObject*);
runtime_root.cpp 78 PassRefPtr<RootObject> RootObject::create(const void* nativeHandle, JSGlobalObject* globalObject)
80 return adoptRef(new RootObject(nativeHandle, globalObject));
83 RootObject::RootObject(const void* nativeHandle, JSGlobalObject* globalObject)
85 , m_nativeHandle(nativeHandle)
160 const void* RootObject::nativeHandle() const
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaFieldJSC.cpp 81 if (rootObject && rootObject->nativeHandle()) {
86 dispatchJNICall(exec, rootObject->nativeHandle(), fieldJInstance, false, returnType, mid, args, result, 0, exceptionDescription);
166 if (rootObject && rootObject->nativeHandle()) {
173 dispatchJNICall(exec, rootObject->nativeHandle(), fieldJInstance, false, JavaTypeVoid, mid, args, result, 0, exceptionDescription);
JavaInstanceJSC.cpp 194 if (rootObject->nativeHandle()) {
199 handled = dispatchJNICall(exec, rootObject->nativeHandle(), obj, jMethod->isStatic(), jMethod->returnType(), methodId, jArgs.data(), result, callingURL, exceptionDescription);
234 jlong nativeHandle = env->GetLongField(result.l, fieldID);
237 if (nativeHandle == 1 /* UndefinedHandle */)
239 return static_cast<JSObject*>(jlong_to_ptr(nativeHandle));
JNIUtilityPrivate.cpp 212 jlong nativeHandle = ptr_to_jlong(object);
214 result.l = env->NewObject(jsObjectClass, constructorID, nativeHandle);
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 62 struct native_handle nativeHandle;
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptController.cpp 375 PassRefPtr<Bindings::RootObject> ScriptController::createRootObject(void* nativeHandle)
377 RootObjectMap::iterator it = m_rootObjects.find(nativeHandle);
381 RefPtr<Bindings::RootObject> rootObject = Bindings::RootObject::create(nativeHandle, globalObject(pluginWorld()));
383 m_rootObjects.set(nativeHandle, rootObject);
457 void ScriptController::cleanupScriptObjectsForPlugin(void* nativeHandle)
459 RootObjectMap::iterator it = m_rootObjects.find(nativeHandle);
ScriptController.h 151 PassRefPtr<JSC::Bindings::RootObject> createRootObject(void* nativeHandle);
  /hardware/samsung_slsi/exynos5/include/
gralloc_priv.h 65 struct native_handle nativeHandle;
  /external/webkit/Source/WebCore/bindings/v8/
ScriptController.cpp 365 void ScriptController::cleanupScriptObjectsForPlugin(Widget* nativeHandle)
367 PluginObjectMap::iterator it = m_pluginObjects.find(nativeHandle);

Completed in 335 milliseconds