HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 126 - 150 of 3550) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libsepol/src/
debug.h 25 #include "handle.h"
50 #define ERR(handle, ...) \
51 msg_write(handle, SEPOL_MSG_ERR, "libsepol", \
54 #define INFO(handle, ...) \
55 msg_write(handle, SEPOL_MSG_INFO, "libsepol", \
58 #define WARN(handle, ...) \
59 msg_write(handle, SEPOL_MSG_WARN, "libsepol", \
  /external/qemu/android/utils/
mapfile.h 35 /* Checks if file handle is a valid one.
37 * boolean: 1 if handle is valid, or 0 if it's not valid.
40 mapfile_is_valid(MapFile* handle)
42 return handle != (void*)(ptrdiff_t)-1;
53 * A valid handle to the opened file on success, or an invalid value on
58 /* Closes a file handle opened with mapfile_open routine.
60 * handle - A handle to a file previously obtained via successful call to
65 extern int mapfile_close(MapFile* handle);
68 * Except for handle parameter, semantics of this call are the same as fo
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpServer.java 46 public void sendObjectAdded(int handle) {
47 native_send_object_added(handle);
50 public void sendObjectRemoved(int handle) {
51 native_send_object_removed(handle);
65 private native final void native_send_object_added(int handle);
66 private native final void native_send_object_removed(int handle);
  /frameworks/native/include/ui/
GraphicBufferMapper.h 41 status_t registerBuffer(buffer_handle_t handle);
43 status_t unregisterBuffer(buffer_handle_t handle);
45 status_t lock(buffer_handle_t handle,
48 status_t lockYCbCr(buffer_handle_t handle,
51 status_t unlock(buffer_handle_t handle);
53 // dumps information about the mapping of this handle
54 void dump(buffer_handle_t handle);
  /hardware/samsung_slsi/exynos5/libexynosutils/
ExynosMutex.h 118 void *handle);
121 void *handle);
124 void *handle);
127 void *handle);
130 void *handle);
133 void *handle);
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.h 35 /* Checks if file handle is a valid one.
37 * boolean: 1 if handle is valid, or 0 if it's not valid.
40 mapfile_is_valid(MapFile* handle)
42 return handle != (void*)(ptrdiff_t)-1;
53 * A valid handle to the opened file on success, or an invalid value on
58 /* Closes a file handle opened with mapfile_open routine.
60 * handle - A handle to a file previously obtained via successful call to
65 extern int mapfile_close(MapFile* handle);
68 * Except for handle parameter, semantics of this call are the same as fo
    [all...]
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcSecureElement.java 53 private native boolean doNativeDisconnectSecureElementConnection(int handle);
55 public boolean doDisconnect(int handle) {
59 return doNativeDisconnectSecureElementConnection(handle);
62 public native byte[] doTransceive(int handle, byte[] data);
64 public native int[] doGetTechList(int handle);
66 public native byte [] doGetUid(int handle);
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcSecureElement.java 53 private native boolean doNativeDisconnectSecureElementConnection(int handle);
55 public boolean doDisconnect(int handle) {
59 return doNativeDisconnectSecureElementConnection(handle);
62 public native byte[] doTransceive(int handle, byte[] data);
64 public native int[] doGetTechList(int handle);
66 public native byte [] doGetUid(int handle);
  /external/chromium/chrome/browser/automation/
testing_automation_provider_gtk.cc 15 void TestingAutomationProvider::ActivateWindow(int handle) {
19 void TestingAutomationProvider::IsWindowMaximized(int handle,
26 void TestingAutomationProvider::TerminateSession(int handle, bool* success) {
32 void TestingAutomationProvider::WindowGetViewBounds(int handle,
39 GtkWindow* window = window_tracker_->GetResource(handle);
61 void TestingAutomationProvider::GetWindowBounds(int handle,
68 void TestingAutomationProvider::SetWindowBounds(int handle,
72 GtkWindow* window = window_tracker_->GetResource(handle);
80 void TestingAutomationProvider::SetWindowVisible(int handle,
84 GtkWindow* window = window_tracker_->GetResource(handle);
    [all...]
  /external/chromium_org/media/base/
bitstream_buffer.h 17 BitstreamBuffer(int32 id, base::SharedMemoryHandle handle, size_t size)
19 handle_(handle),
24 base::SharedMemoryHandle handle() const { return handle_; } function in class:media::BitstreamBuffer
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtctexturevideoframe_unittest.cc 47 NativeHandleImpl handle; local
48 cricket::WebRtcTextureVideoFrame frame(&handle, 640, 480, 100, 200);
49 EXPECT_EQ(&handle, frame.GetNativeHandle());
61 NativeHandleImpl handle; local
62 cricket::WebRtcTextureVideoFrame frame1(&handle, 640, 480, 100, 200);
73 NativeHandleImpl handle; local
74 EXPECT_EQ(0, handle.ref_count());
76 new cricket::WebRtcTextureVideoFrame(&handle, 640, 480, 100, 200);
77 EXPECT_EQ(1, handle.ref_count());
79 EXPECT_EQ(2, handle.ref_count())
    [all...]
  /external/bluetooth/bluedroid/btif/include/
btif_sm.h 64 ** Returns Returns a pointer to the initialized state machine handle.
79 void btif_sm_shutdown(btif_sm_handle_t handle);
90 btif_sm_state_t btif_sm_get_state(btif_sm_handle_t handle);
101 bt_status_t btif_sm_dispatch(btif_sm_handle_t handle, btif_sm_event_t event,
116 bt_status_t btif_sm_change_state(btif_sm_handle_t handle, btif_sm_state_t state);
btif_sock_thread.h 42 int btsock_thread_add_fd(int handle, int fd, int type, int flags, uint32_t user_id);
43 int btsock_thread_wakeup(int handle);
44 int btsock_thread_post_cmd(int handle, int cmd_type, const unsigned char* cmd_data,
47 int btsock_thread_exit(int handle);
  /external/chromium/chrome/browser/
browser_util_win.cc 19 static HANDLE handle = NULL; local
26 if (handle != NULL)
27 CloseHandle(handle);
28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
  /external/chromium/chrome/browser/sync/glue/
history_model_worker.h 39 CancelableRequestProvider::Handle handle) {}
42 CancelableRequestProvider::Handle handle) {}
45 CancelableRequestProvider::Handle handle) {}
48 CancelableRequestProvider::Handle handle) {}
  /external/chromium_org/base/win/
scoped_handle.h 31 // - IsValid() method can tolerate multiple invalid handle values such as NULL
33 // - Receive() method allows to receive a handle value from a function that
34 // takes a raw handle pointer only.
40 typedef typename Traits::Handle Handle;
44 explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle()) {
45 Set(handle);
69 void Set(Handle handle) {
    [all...]
  /external/chromium_org/content/common/gpu/client/
gpu_memory_buffer_impl_mac.cc 13 gfx::GpuMemoryBufferHandle handle,
16 switch (handle.type) {
20 if (!buffer->Initialize(handle))
28 if (!buffer->Initialize(handle))
  /external/chromium_org/content/common/
sandbox_util.cc 16 base::PlatformFile handle,
24 if (!content::BrokerDuplicateHandle(handle, target_process_id, &out_handle,
31 // When we're not closing the source, we need to duplicate the handle and take
33 // generate IPC messages, and the handle must remain valid until it's sent to
35 // close the source handle before the message is sent, creating a race
37 int fd = should_close_source ? handle : ::dup(handle);
sandbox_util.h 15 // Platform neutral wrapper for making an exact copy of a handle for use in
20 base::PlatformFile handle,
  /external/chromium_org/ppapi/cpp/private/
pass_file_handle.cc 19 PassFileHandle::PassFileHandle(PP_FileHandle handle)
20 : handle_(handle) {
23 PassFileHandle::PassFileHandle(PassFileHandle& handle)
24 : handle_(handle.Release()) {
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/
graw_null.c 12 void **handle)
  /external/chromium_org/ui/base/resource/
resource_bundle_win.h 19 UI_EXPORT void SetResourcesDataDLL(HINSTANCE handle);
  /external/iptables/include/
ip6tables.h 11 struct ip6tc_handle **handle);
13 extern int for_each_chain6(int (*fn)(const ip6t_chainlabel, int, struct ip6tc_handle *), int verbose, int builtinstoo, struct ip6tc_handle *handle);
14 extern int flush_entries6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
15 extern int delete_chain6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
  /external/libsepol/include/sepol/policydb/
hierarchy.h 30 extern int hierarchy_check_constraints(sepol_handle_t * handle, policydb_t * p);
  /external/mesa3d/src/gallium/targets/graw-null/
graw_null.c 12 void **handle)

Completed in 1041 milliseconds

1 2 3 4 56 7 8 91011>>