OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScopedHandleBase
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/mojo/public/system/
core_cpp.h
18
//
ScopedHandleBase
------------------------------------------------------------
23
class
ScopedHandleBase
{
24
MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(
ScopedHandleBase
, RValue);
27
ScopedHandleBase
() {}
28
explicit
ScopedHandleBase
(HandleType handle) : handle_(handle) {}
29
~
ScopedHandleBase
() { CloseIfNecessary(); }
32
ScopedHandleBase
(RValue other) : handle_(other.object->release()) {}
33
ScopedHandleBase
& operator=(RValue other) {
40
void swap(
ScopedHandleBase
& other) {
71
inline
ScopedHandleBase
<HandleType> MakeScopedHandle(HandleType handle)
[
all
...]
/external/chromium_org/mojo/public/bindings/lib/
passable.h
31
ScopedHandleBase
<HandleType> Pass() {
32
return
ScopedHandleBase
<HandleType>(release());
54
void operator=(
ScopedHandleBase
<HandleType> scoper) {
59
ScopedHandleBase
<HandleType>(*this->ptr_);
Completed in 48 milliseconds