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:timeZoneId
(Results
1 - 7
of
7
) sorted by relevance
/base/time/time_service/services/ipc/proxy/inner_api_include/
H
A
D
time_service_proxy.h
32
int32_t SetTimeZone(const std::string &
timeZoneId
, APIVersion apiVersion = APIVersion::API_VERSION_7) override;
33
int32_t GetTimeZone(std::string &
timeZoneId
) override;
/base/time/time_service/services/ipc/stub/
H
A
D
time_service_stub.cpp
127
std::string
timeZoneId
= data.ReadString();
in OnSetTimeZone()
local
139
int32_t ret = SetTimeZone(
timeZoneId
);
in OnSetTimeZone()
147
std::string
timeZoneId
;
in OnGetTimeZone()
local
148
int32_t ret = GetTimeZone(
timeZoneId
);
in OnGetTimeZone()
153
reply.WriteString(
timeZoneId
);
in OnGetTimeZone()
/base/time/time_service/services/
H
A
D
time_system_ability.h
55
int32_t SetTimeZone(const std::string &
timeZoneId
, APIVersion apiVersion = APIVersion::API_VERSION_7) override;
56
int32_t GetTimeZone(std::string &
timeZoneId
) override;
H
A
D
time_system_ability.cpp
717
int32_t TimeSystemAbility::SetTimeZone(const std::string &
timeZoneId
, APIVersion apiVersion)
in SetTimeZone()
argument
719
if (!TimeZoneInfo::GetInstance().SetTimezone(
timeZoneId
)) {
in SetTimeZone()
720
TIME_HILOGE(TIME_MODULE_SERVICE, "Set timezone failed :%{public}s",
timeZoneId
.c_str());
in SetTimeZone()
729
int32_t TimeSystemAbility::GetTimeZone(std::string &
timeZoneId
)
in GetTimeZone()
argument
731
if (!TimeZoneInfo::GetInstance().GetTimezone(
timeZoneId
)) {
in GetTimeZone()
735
TIME_HILOGD(TIME_MODULE_SERVICE, "Current timezone : %{public}s",
timeZoneId
.c_str());
in GetTimeZone()
/base/time/time_service/services/ipc/proxy/
H
A
D
time_service_proxy.cpp
162
int32_t TimeServiceProxy::SetTimeZone(const std::string &
timeZoneId
, APIVersion apiVersion)
in SetTimeZone()
argument
170
if (!data.WriteString(
timeZoneId
)) {
in SetTimeZone()
171
TIME_HILOGE(TIME_MODULE_CLIENT, "Failed to write
timeZoneId
");
in SetTimeZone()
187
int32_t TimeServiceProxy::GetTimeZone(std::string &
timeZoneId
)
in GetTimeZone()
argument
201
timeZoneId
= reply.ReadString();
in GetTimeZone()
/base/time/time_service/interfaces/inner_api/include/
H
A
D
time_service_client.h
77
TIME_API bool SetTimeZone(const std::string &
timeZoneId
);
/base/time/time_service/interfaces/inner_api/src/
H
A
D
time_service_client.cpp
434
std::string
timeZoneId
;
in GetTimeZone()
local
442
if (proxy->GetTimeZone(
timeZoneId
) != ERR_OK) {
in GetTimeZone()
446
return
timeZoneId
;
in GetTimeZone()
Completed in 6 milliseconds