/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...] |
/system/core/libutils/ |
NativeHandle.cpp | 17 #include <utils/NativeHandle.h> 22 sp<NativeHandle> NativeHandle::create( 24 return handle ? new NativeHandle(handle, ownsHandle) : NULL; 27 NativeHandle::NativeHandle(native_handle_t* handle, bool ownsHandle) 31 NativeHandle::~NativeHandle() {
|
/system/core/include/utils/ |
NativeHandle.h | 27 class NativeHandle: public LightRefBase<NativeHandle> { 32 // If handle is NULL, no NativeHandle will be created. 33 static sp<NativeHandle> create(native_handle_t* handle, bool ownsHandle); 41 friend class LightRefBase<NativeHandle>; 43 NativeHandle(native_handle_t* handle, bool ownsHandle); 44 virtual ~NativeHandle(); 50 NativeHandle(const NativeHandle&); 51 NativeHandle& operator=(const NativeHandle&) [all...] |
/external/chromium_org/base/synchronization/ |
lock_impl.h | 28 typedef CRITICAL_SECTION NativeHandle; 30 typedef pthread_mutex_t NativeHandle; 50 NativeHandle* native_handle() { return &native_handle_; } 53 NativeHandle native_handle_;
|
/external/chromium_org/v8/src/platform/ |
semaphore.h | 53 typedef semaphore_t NativeHandle; 55 typedef sem_t NativeHandle; 57 typedef HANDLE NativeHandle; 60 NativeHandle& native_handle() { 63 const NativeHandle& native_handle() const { 68 NativeHandle native_handle_;
|
condition-variable.h | 63 typedef pthread_cond_t NativeHandle; 66 class NativeHandle V8_FINAL { 68 NativeHandle() : waitlist_(NULL), freelist_(NULL) {} 69 ~NativeHandle(); 82 DISALLOW_COPY_AND_ASSIGN(NativeHandle); 86 NativeHandle& native_handle() { 89 const NativeHandle& native_handle() const { 94 NativeHandle native_handle_;
|
mutex.h | 57 typedef pthread_mutex_t NativeHandle; 59 typedef CRITICAL_SECTION NativeHandle; 62 NativeHandle& native_handle() { 65 const NativeHandle& native_handle() const { 70 NativeHandle native_handle_; 156 typedef Mutex::NativeHandle NativeHandle; 158 NativeHandle& native_handle() { 161 const NativeHandle& native_handle() const { 166 NativeHandle native_handle_ [all...] |
condition-variable.cc | 141 ConditionVariable::NativeHandle::~NativeHandle() { 152 ConditionVariable::Event* ConditionVariable::NativeHandle::Pre() { 180 void ConditionVariable::NativeHandle::Post(Event* event, bool result) {
|
/libcore/luni/src/main/java/java/util/jar/ |
StrictJarFile.java | 42 private final long nativeHandle; 57 this.nativeHandle = nativeOpenJarFile(fileName); 70 nativeClose(this.nativeHandle); 82 return new EntryIterator(nativeHandle, ""); 86 return nativeFindEntry(nativeHandle, name); 159 nativeClose(nativeHandle); 182 EntryIterator(long nativeHandle, String prefix) throws IOException { 183 iterationHandle = nativeStartIteration(nativeHandle, prefix); 218 Iterator<ZipEntry> entryIterator = new EntryIterator(nativeHandle, "META-INF/"); 228 private static native long nativeStartIteration(long nativeHandle, String prefix) [all...] |
/libcore/luni/src/main/native/ |
java_util_jar_StrictJarFile.cpp | 97 static jlong StrictJarFile_nativeStartIteration(JNIEnv* env, jobject, jlong nativeHandle, 107 error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), 110 error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), 141 static jobject StrictJarFile_nativeFindEntry(JNIEnv* env, jobject, jlong nativeHandle, 149 const int32_t error = FindEntry(reinterpret_cast<ZipArchiveHandle>(nativeHandle), 158 static void StrictJarFile_nativeClose(JNIEnv*, jobject, jlong nativeHandle) { 159 CloseArchive(reinterpret_cast<ZipArchiveHandle>(nativeHandle));
|
/external/chromium_org/third_party/webrtc/common_video/interface/ |
native_handle.h | 23 class NativeHandle { 25 virtual ~NativeHandle() {}
|
texture_video_frame.h | 27 TextureVideoFrame(NativeHandle* handle, 68 scoped_refptr<NativeHandle> handle_;
|
/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 | 83 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle()); 123 int waitResult = pthread_cond_timedwait (&mCondition, mutex.nativeHandle(), &absoluteTime);
|
/external/chromium_org/content/renderer/media/ |
native_handle_impl.h | 14 class NativeHandleImpl : public webrtc::NativeHandle {
|
/frameworks/native/services/surfaceflinger/ |
MonitoredProducer.h | 25 class NativeHandle; 53 virtual status_t setSidebandStream(const sp<NativeHandle>& stream);
|
/packages/apps/Nfc/nci/jni/ |
Mutex.h | 90 ** Function: nativeHandle 97 pthread_mutex_t* nativeHandle ();
|
Mutex.cpp | 126 ** Function: nativeHandle 133 pthread_mutex_t* Mutex::nativeHandle ()
|
CondVar.cpp | 81 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle()); 121 int waitResult = pthread_cond_timedwait (&mCondition, mutex.nativeHandle(), &absoluteTime);
|
/external/chromium_org/chrome/browser/ui/cocoa/applescript/ |
window_applescript.mm | 31 - (NSWindow*)nativeHandle; 103 - (NSWindow*)nativeHandle { 216 return [NSNumber numberWithInt:[[self nativeHandle] orderedIndex]]; 225 [[self nativeHandle] setOrderedIndex:index]; 242 return [[self nativeHandle] valueForKey:key]; 246 [[self nativeHandle] setValue:(id)value forKey:key];
|
/system/core/libcutils/ |
native_handle.c | 17 #define LOG_TAG "NativeHandle"
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtctexturevideoframe.h | 41 WebRtcTextureVideoFrame(webrtc::NativeHandle* handle, int width, int height, 104 talk_base::scoped_refptr<webrtc::NativeHandle> handle_;
|
/packages/apps/Nfc/src/com/android/nfc/ |
NfcService.java | [all...] |
/external/chromium_org/third_party/webrtc/common_video/ |
texture_video_frame.cc | 17 TextureVideoFrame::TextureVideoFrame(NativeHandle* handle,
|