Searched refs:handle (Results 101 - 125 of 2418) sorted by relevance

1234567891011>>

/external/chromium_org/media/base/
H A Dbitstream_buffer.h17 BitstreamBuffer(int32 id, base::SharedMemoryHandle handle, size_t size) argument
19 handle_(handle),
24 base::SharedMemoryHandle handle() const { return handle_; } function in class:media::BitstreamBuffer
/external/chromium_org/net/socket/
H A Dsocks_client_socket_pool_unittest.cc28 // Make sure |handle|'s load times are set correctly. Only connect times should
30 void TestLoadTimingInfo(const ClientSocketHandle& handle) { argument
32 EXPECT_TRUE(handle.GetLoadTimingInfo(false, &load_timing_info));
134 ClientSocketHandle handle; local
135 int rv = handle.Init("a", CreateSOCKSv5Params(), LOW, CompletionCallback(),
138 EXPECT_TRUE(handle.is_initialized());
139 EXPECT_TRUE(handle.socket());
140 TestLoadTimingInfo(handle);
153 ClientSocketHandle handle; local
155 handle
172 ClientSocketHandle handle; local
187 ClientSocketHandle handle; local
206 ClientSocketHandle handle; local
220 ClientSocketHandle handle; local
241 ClientSocketHandle handle; local
261 ClientSocketHandle handle; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtctexturevideoframe_unittest.cc47 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
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-toggle-mirror-cache.js30 var handle1 = debug.MakeMirror(123).handle();
34 var handle2 = debug.MakeMirror(123).handle();
39 var handle3 = debug.MakeMirror(123).handle();
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_sm.h64 ** 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);
H A Dbtif_sock_thread.h42 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_org/base/win/
H A Dscoped_handle.h31 // - IsValid() method can tolerate multiple invalid handle values such as NULL
42 explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle()) { argument
43 Set(handle);
67 void Set(Handle handle) { argument
68 if (handle_ != handle) {
71 if (Traits::IsHandleValid(handle)) {
72 handle_ = handle;
73 Verifier::StartTracking(handle, this, BASE_WIN_GET_CALLER,
98 // Explicitly closes the owned handle.
120 // Closes the handle
124 IsHandleValid(HANDLE handle) argument
142 StartTracking(HANDLE handle, const void* owner, const void* pc1, const void* pc2) argument
144 StopTracking(HANDLE handle, const void* owner, const void* pc1, const void* pc2) argument
[all...]
/external/chromium_org/content/common/gpu/client/
H A Dgpu_memory_buffer_impl_shared_memory.cc64 gfx::GpuMemoryBufferHandle handle; local
65 handle.type = gfx::SHARED_MEMORY_BUFFER;
66 shared_memory.GiveToProcess(child_process, &handle.handle);
67 callback.Run(handle);
73 const gfx::GpuMemoryBufferHandle& handle,
79 if (!base::SharedMemory::IsHandleValid(handle.handle))
87 make_scoped_ptr(new base::SharedMemory(handle.handle, fals
72 CreateFromHandle( const gfx::GpuMemoryBufferHandle& handle, const gfx::Size& size, unsigned internalformat, const DestructionCallback& callback) argument
137 gfx::GpuMemoryBufferHandle handle; local
[all...]
/external/chromium_org/content/common/
H A Dsandbox_util.cc16 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);
15 BrokerGetFileHandleForProcess( base::PlatformFile handle, base::ProcessId target_process_id, bool should_close_source) argument
H A Dsandbox_util.h15 // Platform neutral wrapper for making an exact copy of a handle for use in
20 base::PlatformFile handle,
/external/chromium_org/ipc/
H A Dipc_channel_factory.cc13 PlatformChannelFactory(ChannelHandle handle, argument
15 : handle_(handle), mode_(mode) {
38 const ChannelHandle& handle, Channel::Mode mode) {
39 return scoped_ptr<ChannelFactory>(new PlatformChannelFactory(handle, mode));
37 Create( const ChannelHandle& handle, Channel::Mode mode) argument
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_resource_manager.cc33 PP_Resource handle = next_handle_++; local
37 resource_map_.insert(ResourceMap::value_type(handle, resource_tracker));
40 return handle;
43 void FakeResourceManager::AddRef(PP_Resource handle) { argument
45 ResourceMap::iterator iter = resource_map_.find(handle);
47 << handle;
52 << "(" << handle
59 void FakeResourceManager::Release(PP_Resource handle) { argument
60 if (handle == 0)
64 ResourceMap::iterator iter = resource_map_.find(handle);
91 Get(PP_Resource handle, bool not_found_ok) argument
[all...]
/external/chromium_org/ppapi/cpp/private/
H A Dpass_file_handle.cc19 PassFileHandle::PassFileHandle(PP_FileHandle handle) argument
20 : handle_(handle) {
23 PassFileHandle::PassFileHandle(PassFileHandle& handle) argument
24 : handle_(handle.Release()) {
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/
H A Dgraw_null.c12 void **handle)
7 graw_create_window_and_screen( int x, int y, unsigned width, unsigned height, enum pipe_format format, void **handle) argument
/external/chromium_org/ui/base/resource/
H A Dresource_bundle_win.h19 UI_BASE_EXPORT void SetResourcesDataDLL(HINSTANCE handle);
/external/iptables/include/
H A Dip6tables.h11 struct xtc_handle **handle, bool restore);
13 extern int for_each_chain6(int (*fn)(const xt_chainlabel, int, struct xtc_handle *), int verbose, int builtinstoo, struct xtc_handle *handle);
14 extern int flush_entries6(const xt_chainlabel chain, int verbose, struct xtc_handle *handle);
15 extern int delete_chain6(const xt_chainlabel chain, int verbose, struct xtc_handle *handle);
/external/libsepol/include/sepol/policydb/
H A Dhierarchy.h30 extern int hierarchy_check_constraints(sepol_handle_t * handle, policydb_t * p);
/external/mesa3d/src/gallium/targets/graw-null/
H A Dgraw_null.c12 void **handle)
7 graw_create_window_and_screen( int x, int y, unsigned width, unsigned height, enum pipe_format format, void **handle) argument
/external/webrtc/src/modules/audio_processing/
H A Dhigh_pass_filter_impl.h41 virtual int InitializeHandle(void* handle) const;
42 virtual int ConfigureHandle(void* handle) const;
43 virtual int DestroyHandle(void* handle) const;
45 virtual int GetHandleError(void* handle) const;
H A Dlevel_estimator_impl.h42 virtual int InitializeHandle(void* handle) const;
43 virtual int ConfigureHandle(void* handle) const;
44 virtual int DestroyHandle(void* handle) const;
46 virtual int GetHandleError(void* handle) const;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dvlan_util.c35 struct nl_sock *handle = NULL; local
55 handle = nl_socket_alloc();
56 if (!handle) {
61 if (nl_connect(handle, NETLINK_ROUTE) < 0) {
66 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) < 0) {
108 if (rtnl_link_add(handle, rlink, NLM_F_CREATE) < 0) {
122 if (handle)
123 nl_socket_free(handle);
131 struct nl_sock *handle = NULL; local
137 handle
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dvlan_util.c35 struct nl_sock *handle = NULL; local
55 handle = nl_socket_alloc();
56 if (!handle) {
61 if (nl_connect(handle, NETLINK_ROUTE) < 0) {
66 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) < 0) {
108 if (rtnl_link_add(handle, rlink, NLM_F_CREATE) < 0) {
122 if (handle)
123 nl_socket_free(handle);
131 struct nl_sock *handle = NULL; local
137 handle
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dvlan_util.c35 struct nl_sock *handle = NULL; local
55 handle = nl_socket_alloc();
56 if (!handle) {
61 if (nl_connect(handle, NETLINK_ROUTE) < 0) {
66 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) < 0) {
108 if (rtnl_link_add(handle, rlink, NLM_F_CREATE) < 0) {
122 if (handle)
123 nl_socket_free(handle);
131 struct nl_sock *handle = NULL; local
137 handle
[all...]
/external/yaffs2/yaffs2/direct/
H A Dyaffs_fileem.c57 int handle; member in struct:__anon34292
85 filedisk.handle = open("yaffsemfile", O_RDWR | O_CREAT, S_IREAD | S_IWRITE);
87 if(filedisk.handle < 0)
94 fSize = lseek(filedisk.handle,0,SEEK_END);
100 lseek(filedisk.handle,0,SEEK_SET);
106 written = write(filedisk.handle,&p,sizeof(yflash_Page));
129 lseek(filedisk.handle,chunkInNAND * 528,SEEK_SET);
130 written = write(filedisk.handle,data,512);
137 lseek(filedisk.handle,chunkInNAND * 528 + 512,SEEK_SET);
138 written = write(filedisk.handle,spar
[all...]
/external/bluetooth/bluedroid/bta/include/
H A Dbta_pan_co.h81 BTA_API extern void bta_pan_co_open(UINT16 handle, UINT8 app_id, tBTA_PAN_ROLE local_role, tBTA_PAN_ROLE peer_role, BD_ADDR peer_addr);
94 BTA_API extern void bta_pan_co_close(UINT16 handle, UINT8 app_id);
109 BTA_API extern void bta_pan_co_tx_path(UINT16 handle, UINT8 app_id);
124 BTA_API extern void bta_pan_co_rx_path(UINT16 handle, UINT8 app_id);
139 BTA_API extern void bta_pan_co_tx_write(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, UINT8 *p_data,
155 BTA_API extern void bta_pan_co_tx_writebuf(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf,
173 BTA_API extern void bta_pan_co_rx_flow(UINT16 handle, UINT8 app_id, BOOLEAN enable);
185 BTA_API extern void bta_pan_co_pfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result,
197 BTA_API extern void bta_pan_co_mfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result,

Completed in 354 milliseconds

1234567891011>>