OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Handles
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ppapi/proxy/
nacl_message_scanner.cc
24
typedef std::vector<ppapi::proxy::SerializedHandle>
Handles
;
29
// Vector to hold
handles
found in the message.
30
Handles
handles
;
member in struct:__anon12576::ScanningResults
32
// be less than or equal to
handles
.size(). After the scan it should be equal.
57
results->
handles
.push_back(handle);
68
// Overload to match SerializedVar, which can contain
handles
.
72
// Copy any
handles
and then rewrite the message.
74
results->
handles
.push_back(*var_handles[i]);
81
// the
handles
are carried inside the ResourceMessageReplyParams
[
all
...]
/external/chromium/chrome/browser/password_manager/
password_store_default.cc
22
// MigrateHelper
handles
migration from WebDB to PasswordStore. It runs
43
typedef std::set<WebDataService::Handle>
Handles
;
53
// Set of
handles
from requesting data from the WebDB.
54
Handles
handles_;
60
for (
Handles
::const_iterator i = handles_.begin(); i != handles_.end(); ++i)
/external/chromium_org/chrome/browser/ui/
hung_plugin_tab_helper.cc
47
typedef std::vector<HANDLE>
Handles
;
51
Handles
* data() { return &data_; }
54
Handles
data_;
63
for (
Handles
::iterator iter = data_.begin(); iter != data_.end(); ++iter)
77
for (OwnedHandleVector::
Handles
::const_iterator iter =
230
//
Handles
calling the helper when the infobar should be re-shown.
/external/llvm/lib/IR/
Value.cpp
521
assert(Entry != 0 && "Value doesn't have any
handles
?");
526
// Ok, it doesn't have any
handles
yet, so we must insert it into the
531
DenseMap<Value*, ValueHandleBase*> &
Handles
= pImpl->ValueHandles;
532
const void *OldBucketPtr =
Handles
.getPointerIntoBucketsArray();
534
ValueHandleBase *&Entry =
Handles
[VP.getPointer()];
535
assert(Entry == 0 && "Value really did already have
handles
?");
541
if (
Handles
.isPointerIntoBucketsArray(OldBucketPtr) ||
542
Handles
.size() == 1) {
547
for (DenseMap<Value*, ValueHandleBase*>::iterator I =
Handles
.begin(),
548
E =
Handles
.end(); I != E; ++I)
[
all
...]
/external/chromium_org/components/nacl/loader/
nacl_ipc_adapter.cc
378
typedef std::vector<ppapi::proxy::SerializedHandle>
Handles
;
379
Handles
handles
;
local
381
if (!locked_data_.nacl_msg_scanner_.ScanMessage(msg, &
handles
, &new_msg))
384
// Now add any descriptors we found to rewritten_msg. |
handles
| is usually
386
for (
Handles
::const_iterator iter =
handles
.begin();
387
iter !=
handles
.end();
536
// If we ever pass
handles
from the plugin to the host, we should close them
Completed in 198 milliseconds