Searched defs:handle (Results 176 - 200 of 693) sorted by relevance

1234567891011>>

/external/chromium/base/files/
H A Dfile_path_watcher_win.cc42 // Setup a watch handle for directory |dir|. Returns true if no fatal error
43 // occurs. |handle| will receive the handle value if |dir| is watchable,
45 static bool SetupWatchHandle(const FilePath& dir, HANDLE* handle)
48 // (Re-)Initialize the watch handle.
51 // Destroy the watch handle.
180 HANDLE* handle) {
181 *handle = FindFirstChangeNotification(
187 if (*handle != INVALID_HANDLE_VALUE) {
188 // Make sure the handle w
179 SetupWatchHandle(const FilePath& dir, HANDLE* handle) argument
[all...]
/external/chromium/base/
H A Dshared_memory_win.cc29 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only) argument
30 : mapped_file_(handle),
37 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only, argument
44 ::DuplicateHandle(process, handle,
58 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) { argument
59 return handle != NULL;
68 void SharedMemory::CloseHandle(const SharedMemoryHandle& handle) { argument
69 DCHECK(handle != NULL);
70 ::CloseHandle(handle);
224 SharedMemoryHandle SharedMemory::handle() cons function in class:base::SharedMemory
[all...]
/external/chromium/base/synchronization/
H A Dcondition_variable_win.cc54 HANDLE handle; local
59 handle = waiting_event->handle();
60 DCHECK(handle);
65 WaitForSingleObject(handle, static_cast<DWORD>(max_time.InMilliseconds()));
83 handles.push(waiting_list_.PopBack()->handle());
96 HANDLE handle; local
103 handle = waiting_list_.PopBack()->handle(); // LIFO.
105 SetEvent(handle);
232 HANDLE ConditionVariable::Event::handle() const { function in class:base::ConditionVariable::Event
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_contents_provider.cc163 void HistoryContentsProvider::QueryComplete(HistoryService::Handle handle, argument
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_gtk.cc107 int handle,
114 browser_tracker_->GetResource(handle)->window()->GetNativeHandle();
106 WindowSimulateDrag( int handle, const std::vector<gfx::Point>& drag_path, int flags, bool press_escape_en_route, IPC::Message* reply_message) argument
H A Dtesting_automation_provider_views.cc116 void TestingAutomationProvider::WindowGetViewBounds(int handle, argument
123 if (window_tracker_->ContainsHandle(handle)) {
124 gfx::NativeWindow window = window_tracker_->GetResource(handle);
144 void TestingAutomationProvider::GetFocusedViewID(int handle, int* view_id) { argument
146 if (window_tracker_->ContainsHandle(handle)) {
147 gfx::NativeWindow window = window_tracker_->GetResource(handle);
158 int handle, int previous_view_id, IPC::Message* reply_message) {
159 if (!window_tracker_->ContainsHandle(handle))
161 gfx::NativeWindow window = window_tracker_->GetResource(handle);
196 // which will handle respondin
157 WaitForFocusedViewIDToChange( int handle, int previous_view_id, IPC::Message* reply_message) argument
[all...]
/external/chromium/chrome/browser/
H A Dmach_broker_mac.cc207 base::ProcessHandle handle = 0; local
211 handle = Source<RenderProcessHost>(source)->GetHandle();
214 handle =
219 handle = Details<ChildProcessInfo>(details)->handle();
225 InvalidatePid(handle);
H A Dplugin_data_remover.cc93 void PluginDataRemover::OnChannelOpened(const IPC::ChannelHandle& handle) { argument
94 ConnectToChannel(handle);
99 void PluginDataRemover::ConnectToChannel(const IPC::ChannelHandle& handle) { argument
107 channel_ = new IPC::Channel(handle, IPC::Channel::MODE_CLIENT, this);
/external/chromium/chrome/browser/nacl_host/
H A Dnacl_process_host.cc169 void NaClProcessHost::OnProcessLaunchedByBroker(base::ProcessHandle handle) { argument
170 set_handle(handle);
177 return base::GetTerminationStatus(handle(), exit_code);
194 // Copy the handle into the renderer process.
217 // Copy the process handle into the renderer process.
219 handle(),
226 // We use pid as process handle on Posix
227 nacl_process_handle = handle();
231 base::ProcessId nacl_process_id = base::GetProcId(handle());
251 handle(),
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_default.cc39 WebDataService::Handle handle,
71 WebDataService::Handle handle,
75 DCHECK(handles_.end() != handles_.find(handle));
78 handles_.erase(handle);
70 OnWebDataServiceRequestDone( WebDataService::Handle handle, const WDTypedResult* result) argument
H A Dpassword_store_win.cc72 WebDataService::Handle handle,
100 WebDataService::Handle handle = web_data_service_->GetIE7Login(info, this); local
101 pending_requests_.insert(PendingRequestMap::value_type(handle, request));
141 WebDataService::Handle handle,
145 PendingRequestMap::iterator i(pending_requests_.find(handle));
162 request->ForwardResult(GetLoginsRequest::TupleType(request->handle(),
140 OnWebDataServiceRequestDone( WebDataService::Handle handle, const WDTypedResult* result) argument
/external/chromium/chrome/browser/sync/engine/
H A Dchange_reorder_buffer.cc107 // given the parent handle, which is used for top-down traversal. |links_|
203 int64 handle = child.Get(syncable::META_HANDLE); local
204 to_visit.push(handle);
208 if (operations_.find(handle) == operations_.end())
209 operations_[handle] = OP_UPDATE_POSITION_AND_PROPERTIES;
H A Dget_commit_ids_command.cc60 int64 handle = parent.Get(META_HANDLE); local
61 if (ordered_commit_set_->HaveCommitItem(handle) ||
62 item_dependencies.HaveCommitItem(handle)) {
/external/chromium/chrome/browser/tabs/
H A Dtab_finder.cc232 void TabFinder::QueryRedirectsToComplete(HistoryService::Handle handle, argument
/external/chromium/chrome/browser/ui/webui/options/
H A Dpassword_manager_handler.cc215 CancelableRequestProvider::Handle handle,
217 DCHECK_EQ(pending_login_query_, handle);
244 CancelableRequestProvider::Handle handle,
246 DCHECK_EQ(pending_login_query_, handle);
214 OnPasswordStoreRequestDone( CancelableRequestProvider::Handle handle, const std::vector<webkit_glue::PasswordForm*>& result) argument
243 OnPasswordStoreRequestDone( CancelableRequestProvider::Handle handle, const std::vector<webkit_glue::PasswordForm*>& result) argument
/external/chromium/net/socket/
H A Dsocks_client_socket_pool_unittest.cc103 ClientSocketHandle handle; local
104 int rv = handle.Init("a", ignored_socket_params_, LOW, NULL, &pool_,
107 EXPECT_TRUE(handle.is_initialized());
108 EXPECT_TRUE(handle.socket());
116 ClientSocketHandle handle; local
117 int rv = handle.Init("a", ignored_socket_params_, LOW, &callback, &pool_,
120 EXPECT_FALSE(handle.is_initialized());
121 EXPECT_FALSE(handle.socket());
124 EXPECT_TRUE(handle.is_initialized());
125 EXPECT_TRUE(handle
133 ClientSocketHandle handle; local
147 ClientSocketHandle handle; local
168 ClientSocketHandle handle; local
188 ClientSocketHandle handle; local
[all...]
/external/chromium/net/tools/crash_cache/
H A Dcrash_cache.cc50 base::ProcessHandle handle; local
51 if (!base::LaunchApp(cmdline, false, false, &handle)) {
58 if (!base::WaitForExitCode(handle, &exit_code)) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32socketserver.h121 HWND handle() { return wnd_.handle(); } function in class:talk_base::Win32SocketServer
/external/chromium/webkit/glue/
H A Dwebfileutilities_impl.cc118 void WebFileUtilitiesImpl::closeFile(base::PlatformFile& handle) { argument
119 if (handle == base::kInvalidPlatformFileValue)
121 if (base::ClosePlatformFile(handle))
122 handle = base::kInvalidPlatformFileValue;
125 long long WebFileUtilitiesImpl::seekFile(base::PlatformFile handle, argument
128 if (handle == base::kInvalidPlatformFileValue)
130 net::FileStream file_stream(handle, 0);
134 bool WebFileUtilitiesImpl::truncateFile(base::PlatformFile handle, argument
136 if (handle == base::kInvalidPlatformFileValue || offset < 0)
138 net::FileStream file_stream(handle, bas
142 readFromFile(base::PlatformFile handle, char* data, int length) argument
153 writeToFile(base::PlatformFile handle, const char* data, int length) argument
[all...]
H A Dwebsocketstreamhandle_impl.cc29 explicit Context(WebSocketStreamHandleImpl* handle);
68 WebSocketStreamHandleImpl::Context::Context(WebSocketStreamHandleImpl* handle) argument
69 : handle_(handle),
129 WebSocketStreamHandleImpl* handle = handle_; local
134 client->didClose(handle);
/external/e2fsprogs/lib/ext2fs/
H A Dbmap.c137 ext2_extent_handle_t handle = 0; local
163 retval = ext2fs_extent_open2(fs, ino, inode, &handle);
167 retval = ext2fs_extent_set_bmap(handle, block,
171 retval = ext2fs_extent_goto(handle, block);
178 retval = ext2fs_extent_get(handle, EXT2_EXTENT_CURRENT, &extent);
192 retval = ext2fs_extent_set_bmap(handle, block,
311 if (handle)
312 ext2fs_extent_free(handle);
/external/elfutils/tests/
H A Dshow-die-info.c225 handle (Dwarf *dbg, Dwarf_Die *die, int n) function
472 handle (dbg, &child, n + 1);
474 handle (dbg, die, n);
515 handle (dbg, &die, 1);
/external/iproute2/tc/
H A Df_flow.c132 static int flow_parse_opt(struct filter_util *fu, char *handle, argument
145 if (handle) {
146 if (get_u32(&t->tcm_handle, handle, 0)) {
147 fprintf(stderr, "Illegal \"handle\"\n");
269 __u32 handle)
281 fprintf(f, "handle 0x%x ", handle);
268 flow_print_opt(struct filter_util *fu, FILE *f, struct rtattr *opt, __u32 handle) argument
H A Df_rsvp.c169 static int rsvp_parse_opt(struct filter_util *qu, char *handle, int argc, char **argv, struct nlmsghdr *n) argument
181 if (handle) {
182 if (get_u32(&t->tcm_handle, handle, 0)) {
183 fprintf(stderr, "Illegal \"handle\"\n");
230 unsigned handle; local
232 if (get_tc_classid(&handle, *argv)) {
236 addattr_l(n, 4096, TCA_RSVP_CLASSID, &handle, 4);
315 static int rsvp_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
326 if (handle)
327 fprintf(f, "fh 0x%08x ", handle);
[all...]
H A Dtc_filter.c36 fprintf(stderr, " [ root | classid CLASSID ] [ handle FILTERID ]\n");
91 __u32 handle; local
95 if (get_tc_classid(&handle, *argv))
97 req.t.tcm_parent = handle;
98 } else if (strcmp(*argv, "handle") == 0) {
101 duparg("handle", *argv);
147 "\"handle\"\n");
288 __u32 handle; local
292 if (get_tc_classid(&handle, *argv))
294 filter_parent = t.tcm_parent = handle;
[all...]

Completed in 490 milliseconds

1234567891011>>