OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:get_self
(Results
1 - 8
of
8
) sorted by null
/external/llvm/unittests/Support/
ProcessTest.cpp
23
EXPECT_TRUE(process::
get_self
());
24
EXPECT_EQ(process::
get_self
(), process::
get_self
());
27
EXPECT_EQ(getpid(), process::
get_self
()->get_id());
29
EXPECT_EQ(GetCurrentProcessId(), process::
get_self
()->get_id());
32
EXPECT_LT(1u, process::
get_self
()->page_size());
34
EXPECT_LT(TimeValue::MinTime, process::
get_self
()->get_user_time());
35
EXPECT_GT(TimeValue::MaxTime, process::
get_self
()->get_user_time());
36
EXPECT_LT(TimeValue::MinTime, process::
get_self
()->get_system_time());
37
EXPECT_GT(TimeValue::MaxTime, process::
get_self
()->get_system_time())
[
all
...]
MemoryTest.cpp
24
PageSize = sys::process::
get_self
()->page_size();
/external/llvm/include/llvm/Support/
Process.h
89
static self_process *
get_self
();
131
/// \brief Constructor, used by \c process::
get_self
() only.
/external/llvm/lib/Support/Unix/
Memory.inc
91
static const size_t PageSize = process::
get_self
()->page_size();
184
size_t PageSize = process::
get_self
()->page_size();
Path.inc
645
return process::
get_self
()->page_size();
/external/chromium_org/chrome_frame/
html_window_impl.h
145
STDMETHOD(
get_self
)(IHTMLWindow2** self) {
function in class:HTMLWindowImpl
/external/llvm/lib/Support/
Process.cpp
29
self_process *process::
get_self
() {
function in class:process
MemoryBuffer.cpp
317
static int PageSize = sys::process::
get_self
()->page_size();
Completed in 105 milliseconds