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:QoS_Level
(Results
1 - 3
of
3
) sorted by relevance
/foundation/resourceschedule/qos_manager/test/unittest/phone/
H
A
D
qos_ndk_test.cpp
58
int ret = OH_QoS_SetThreadQoS(
QoS_Level
::QOS_BACKGROUND);
in HWTEST_F()
60
ret = OH_QoS_SetThreadQoS(
QoS_Level
::QOS_UTILITY);
in HWTEST_F()
62
ret = OH_QoS_SetThreadQoS(
QoS_Level
::QOS_DEFAULT);
in HWTEST_F()
64
ret = OH_QoS_SetThreadQoS(
QoS_Level
::QOS_USER_INITIATED);
in HWTEST_F()
66
ret = OH_QoS_SetThreadQoS(
QoS_Level
::QOS_DEADLINE_REQUEST);
in HWTEST_F()
68
ret = OH_QoS_SetThreadQoS(
QoS_Level
::QOS_USER_INTERACTIVE);
in HWTEST_F()
70
ret = OH_QoS_SetThreadQoS(
QoS_Level
(-1));
in HWTEST_F()
72
ret = OH_QoS_SetThreadQoS(
QoS_Level
(6));
in HWTEST_F()
74
ret = OH_QoS_SetThreadQoS(
QoS_Level
(1024));
in HWTEST_F()
80
int ret = OH_QoS_SetThreadQoS(
QoS_Level
in HWTEST_F()
[all...]
/foundation/resourceschedule/qos_manager/interfaces/kits/c/
H
A
D
qos.h
50
typedef enum
QoS_Level
{
enum
80
}
QoS_Level
;
typedef
85
* @param level Indicates the level to set. Specific level can be referenced {@link
QoS_Level
}.
87
* @see
QoS_Level
90
int OH_QoS_SetThreadQoS(
QoS_Level
level);
96
* @see
QoS_Level
105
* and the QoS level of the thread as a {@link
QoS_Level
} is written to this variable.
107
* @see
QoS_Level
110
int OH_QoS_GetThreadQoS(
QoS_Level
*level);
/foundation/resourceschedule/qos_manager/frameworks/native/
H
A
D
qos_ndk.cpp
27
int OH_QoS_SetThreadQoS(
QoS_Level
level)
in OH_QoS_SetThreadQoS()
40
int OH_QoS_GetThreadQoS(
QoS_Level
*level)
in OH_QoS_GetThreadQoS()
50
if (static_cast<int>(qosLevel) <
QoS_Level
::QOS_BACKGROUND ||
in OH_QoS_GetThreadQoS()
51
static_cast<int>(qosLevel) >
QoS_Level
::QOS_USER_INTERACTIVE) {
in OH_QoS_GetThreadQoS()
54
*level = static_cast<
QoS_Level
>(qosLevel);
in OH_QoS_GetThreadQoS()
Completed in 1 milliseconds