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

1 2

  /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/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/
socket.h 77 typedef int NativeHandle;
78 static const NativeHandle kInvalidNativeHandle = -1;
80 typedef SOCKET NativeHandle;
81 static const NativeHandle kInvalidNativeHandle = INVALID_SOCKET;
84 NativeHandle& native_handle() {
87 const NativeHandle& native_handle() const {
92 explicit Socket(NativeHandle native_handle) : native_handle_(native_handle) {}
94 NativeHandle native_handle_;
semaphore.h 76 typedef semaphore_t NativeHandle;
78 typedef sem_t NativeHandle;
80 typedef HANDLE NativeHandle;
83 NativeHandle& native_handle() {
86 const NativeHandle& native_handle() const {
91 NativeHandle native_handle_;
condition-variable.h 85 typedef pthread_cond_t NativeHandle;
88 class NativeHandle V8_FINAL {
90 NativeHandle() : waitlist_(NULL), freelist_(NULL) {}
91 ~NativeHandle();
104 DISALLOW_COPY_AND_ASSIGN(NativeHandle);
108 NativeHandle& native_handle() {
111 const NativeHandle& native_handle() const {
116 NativeHandle native_handle_;
mutex.h 79 typedef pthread_mutex_t NativeHandle;
81 typedef CRITICAL_SECTION NativeHandle;
84 NativeHandle& native_handle() {
87 const NativeHandle& native_handle() const {
92 NativeHandle native_handle_;
178 typedef Mutex::NativeHandle NativeHandle;
180 NativeHandle& native_handle() {
183 const NativeHandle& native_handle() const {
188 NativeHandle native_handle_
    [all...]
condition-variable.cc 164 ConditionVariable::NativeHandle::~NativeHandle() {
175 ConditionVariable::Event* ConditionVariable::NativeHandle::Pre() {
203 void ConditionVariable::NativeHandle::Post(Event* event, bool result) {
socket.cc 98 NativeHandle native_handle = ::accept(native_handle_, NULL, NULL);
  /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/chromium_org/content/renderer/media/
native_handle_impl.h 14 class NativeHandleImpl : public webrtc::NativeHandle {
  /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 78 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle());
122 int waitResult = pthread_cond_timedwait_monotonic_np (&mCondition, mutex.nativeHandle(), &absoluteTime);
  /external/chromium/chrome/browser/ui/cocoa/applescript/
window_applescript.mm 28 - (NSWindow*)nativeHandle;
99 - (NSWindow*)nativeHandle {
208 return [NSNumber numberWithInt:[[self nativeHandle] orderedIndex]];
217 [[self nativeHandle] setOrderedIndex:index];
234 return [[self nativeHandle] valueForKey:key];
238 [[self nativeHandle] setValue:(id)value forKey:key];
  /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_;
webrtctexturevideoframe.cc 41 webrtc::NativeHandle* handle, int width, int height, int64 elapsed_time,
webrtctexturevideoframe_unittest.cc 33 class NativeHandleImpl : public webrtc::NativeHandle {
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 62 struct native_handle nativeHandle;
  /hardware/samsung_slsi/exynos5/include/
gralloc_priv.h 65 struct native_handle nativeHandle;
  /hardware/qcom/display/msm8960/libgralloc/
gralloc_priv.h 133 native_handle_t nativeHandle;

Completed in 1559 milliseconds

1 2