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:CellLocation
(Results
1 - 15
of
15
) sorted by relevance
/base/telephony/core_service/interfaces/innerkits/include/
H
A
D
cell_location.h
24
class
CellLocation
: public Parcelable {
class
31
CellLocation
() = default;
32
virtual ~
CellLocation
() = default;
33
virtual
CellLocation
::CellType GetCellLocationType() const = 0;
35
static
CellLocation
*Unmarshalling(Parcel &parcel);
43
class GsmCellLocation : public
CellLocation
{
50
CellLocation
::CellType GetCellLocationType() const override;
77
class CdmaCellLocation : public
CellLocation
{
84
CellLocation
::CellType GetCellLocationType() const override;
H
A
D
i_network_search.h
109
virtual sptr<
CellLocation
> GetCellLocation(int32_t slotId) = 0;
H
A
D
core_manager_inner.h
215
sptr<
CellLocation
> GetCellLocation(int32_t slotId);
/base/telephony/core_service/frameworks/native/src/
H
A
D
cell_location.cpp
26
CellLocation
*
CellLocation
::Unmarshalling(Parcel &parcel)
in Unmarshalling()
33
if (!parcel.WriteInt32(static_cast<int32_t>(
CellLocation
::CellType::CELL_TYPE_GSM))) {
in Marshalling()
87
uint64_t
CellLocation
::GetTimeStamp() const
in GetTimeStamp()
92
CellLocation
::CellType GsmCellLocation::GetCellLocationType() const
in GetCellLocationType()
94
return
CellLocation
::CellType::CELL_TYPE_GSM;
in GetCellLocationType()
122
if (!parcel.WriteInt32(static_cast<int32_t>(
CellLocation
::CellType::CELL_TYPE_CDMA))) {
in Marshalling()
190
CellLocation
::CellType CdmaCellLocation::GetCellLocationType() const
in GetCellLocationType()
192
return
CellLocation
::CellType::CELL_TYPE_CDMA;
in GetCellLocationType()
H
A
D
core_manager_inner.cpp
1534
sptr<
CellLocation
> CoreManagerInner::GetCellLocation(int32_t slotId)
in GetCellLocation()
/base/telephony/core_service/services/network_search/include/
H
A
D
cell_info.h
39
sptr<
CellLocation
> GetCellLocation();
69
sptr<
CellLocation
> GetCellLocationExt(CellInformation::CellType type);
H
A
D
network_search_handler.h
97
sptr<
CellLocation
> GetCellLocation();
H
A
D
network_search_manager.h
184
sptr<
CellLocation
> GetCellLocation(int32_t slotId) override;
/base/telephony/cellular_data/test/mock/
H
A
D
mock_network_search.h
65
MOCK_METHOD1(GetCellLocation, sptr<
CellLocation
>(int32_t slotId));
/base/telephony/sms_mms/services/sms/gsm/
H
A
D
gsm_sms_cb_handler.cpp
181
sptr<
CellLocation
> location = CoreManagerInner::GetInstance().GetCellLocation(slotId_);
in InitLocation()
186
if (location->GetCellLocationType() !=
CellLocation
::CellType::CELL_TYPE_GSM) {
in InitLocation()
/base/telephony/core_service/services/network_search/src/
H
A
D
operator_name.cpp
639
sptr<
CellLocation
> location = networkSearchManager->GetCellLocation(slotId_);
in GetCurrentLac()
644
if (location->GetCellLocationType() !=
CellLocation
::CellType::CELL_TYPE_GSM) {
in GetCurrentLac()
H
A
D
cell_info.cpp
859
sptr<
CellLocation
> CellInfo::GetCellLocation()
in GetCellLocation()
903
sptr<
CellLocation
> CellInfo::GetCellLocationExt(CellInformation::CellType type)
in GetCellLocationExt()
H
A
D
network_search_manager.cpp
1100
sptr<
CellLocation
> NetworkSearchManager::GetCellLocation(int32_t slotId)
in GetCellLocation()
H
A
D
network_search_handler.cpp
1154
sptr<
CellLocation
> NetworkSearchHandler::GetCellLocation()
in GetCellLocation()
/base/telephony/core_service/test/unittest/core_service_gtest/
H
A
D
zero_branch_test.cpp
3320
std::shared_ptr<
CellLocation
> cellLocation = std::make_shared<GsmCellLocation>();
in HWTEST_F()
3321
cellLocation->
CellLocation
::Unmarshalling(parcel);
in HWTEST_F()
Completed in 24 milliseconds