OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:handle_map_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_object.cc
150
if (fd < 0 || fd >= static_cast<int>(
handle_map_
.size()))
153
*out_flags =
handle_map_
[fd].flags;
159
if (fd < 0 || fd >= static_cast<int>(
handle_map_
.size()))
166
handle_map_
[fd].flags = flags;
174
if (fd < 0 || fd >= static_cast<int>(
handle_map_
.size()))
177
*out_handle =
handle_map_
[fd].handle;
195
handle_map_
[id] = descriptor;
197
id =
handle_map_
.size();
198
handle_map_
.push_back(descriptor);
210
if (fd >= (int)
handle_map_
.size()
[
all
...]
kernel_object.h
94
HandleMap_t
handle_map_
;
member in class:nacl_io::KernelObject
97
// Lock to protect free_fds_ and
handle_map_
.
100
// Lock to protect
handle_map_
.
/external/chromium_org/content/renderer/
speech_recognition_dispatcher.cc
163
HandleMap::iterator iter =
handle_map_
.find(request_id);
164
if (iter ==
handle_map_
.end()) {
171
handle_map_
.erase(request_id);
213
for (HandleMap::iterator iter =
handle_map_
.begin();
214
iter !=
handle_map_
.end();
221
handle_map_
[new_id] = handle;
228
for (HandleMap::iterator iter =
handle_map_
.begin();
229
iter !=
handle_map_
.end();
239
HandleMap::iterator iter =
handle_map_
.find(request_id);
240
DCHECK(iter !=
handle_map_
.end())
[
all
...]
speech_recognition_dispatcher.h
62
HandleMap
handle_map_
;
member in class:content::SpeechRecognitionDispatcher
Completed in 394 milliseconds