Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:RTGCtrl
(Results
1 - 5
of
5
) sorted by relevance
/foundation/resourceschedule/ffrt/src/eu/
H
A
D
thread_group.h
31
return tgid >= 0 &&
RTGCtrl
::Instance().Enabled();
in Enabled()
40
tgid =
RTGCtrl
::Instance().GetThreadGroup();
in Init()
50
if (!
RTGCtrl
::Instance().PutThreadGroup(tgid)) {
in Release()
65
RTGCtrl
::Instance().Begin(tgid);
in Begin()
73
RTGCtrl
::Instance().End(tgid);
in End()
82
return
RTGCtrl
::Instance().JoinThread(tgid,
RTGCtrl
::GetTID());
in Join()
90
return
RTGCtrl
::Instance().JoinThread(tgid, tid);
in Join()
98
return
RTGCtrl
::Instance().RemoveThread(tgid,
RTGCtrl
in Leave()
[all...]
H
A
D
rtg_ioctl.cpp
78
class
RTGCtrl
::RTGMsg {
169
RTGCtrl
::
RTGCtrl
()
in RTGCtrl()
function in ffrt::RTGCtrl
185
RTGCtrl
::~
RTGCtrl
()
in ~RTGCtrl()
194
int
RTGCtrl
::GetThreadGroup()
in GetThreadGroup()
204
bool
RTGCtrl
::PutThreadGroup(int tgid)
in PutThreadGroup()
212
bool
RTGCtrl
::JoinThread(int tgid, pid_t tid)
in JoinThread()
220
bool
RTGCtrl
::RemoveThread(int tgid, pid_t tid)
in RemoveThread()
228
bool
RTGCtrl
[all...]
H
A
D
rtg_ioctl.h
29
class
RTGCtrl
{
class
33
static
RTGCtrl
& Instance()
in Instance()
35
static
RTGCtrl
ctrl;
in Instance()
63
RTGCtrl
();
64
~
RTGCtrl
();
/foundation/resourceschedule/ffrt/test/ut/testcase/
H
A
D
ut_rtg.cpp
55
bool enabled =
RTGCtrl
::Instance().Enabled();
in HWTEST_F()
56
FFRT_LOGE("
RTGCtrl
Init %s", enabled ? "Success" : "Failed");
in HWTEST_F()
61
int tgid =
RTGCtrl
::Instance().GetThreadGroup();
in HWTEST_F()
66
bool ret =
RTGCtrl
::Instance().PutThreadGroup(tgid);
in HWTEST_F()
76
int tgid =
RTGCtrl
::Instance().GetThreadGroup();
in HWTEST_F()
81
bool ret =
RTGCtrl
::Instance().SetGroupWindowSize(tgid, WINDOW_SIZE);
in HWTEST_F()
86
ret =
RTGCtrl
::Instance().PutThreadGroup(tgid);
in HWTEST_F()
96
int tgid =
RTGCtrl
::Instance().GetThreadGroup();
in HWTEST_F()
101
bool ret =
RTGCtrl
::Instance().SetInvalidInterval(tgid, INVALID_INTERVAL);
in HWTEST_F()
106
ret =
RTGCtrl
in HWTEST_F()
[all...]
H
A
D
ut_worker_manager.cpp
108
MOCKER_CPP(&
RTGCtrl
::GetThreadGroup).stubs().will(returnValue(1));
in HWTEST_F()
109
MOCKER_CPP(&
RTGCtrl
::PutThreadGroup).stubs().will(returnValue(true));
in HWTEST_F()
110
MOCKER_CPP(&
RTGCtrl
::JoinThread).stubs().will(returnValue(true));
in HWTEST_F()
111
MOCKER_CPP(&
RTGCtrl
::RemoveThread).stubs().will(returnValue(true));
in HWTEST_F()
Completed in 3 milliseconds