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:GetCallerPid
(Results
1 - 25
of
25
) sorted by relevance
/foundation/ability/ability_runtime/services/appmgr/include/
H
A
D
app_mgr_event.h
56
static int32_t
GetCallerPid
(const std::shared_ptr<AppRunningRecord> &callerAppRecord);
H
A
D
app_running_record.h
149
int32_t
GetCallerPid
() const;
/foundation/ability/ability_runtime/services/appmgr/src/
H
A
D
app_mgr_event.cpp
25
int32_t AppMgrEventUtil::
GetCallerPid
(const std::shared_ptr<AppRunningRecord> &callerAppRecord)
in GetCallerPid()
function in OHOS::AppExecFwk::AppMgrEventUtil
115
eventInfo.callerPid =
GetCallerPid
(callerAppRecord);
in SendProcessStartEvent()
188
eventInfo.callerPid =
GetCallerPid
(callerAppRecord);
in UpdateCallerInfo()
H
A
D
app_mgr_service_inner.cpp
1199
int32_t callerPid = appRecord->
GetCallerPid
() == -1 ? IPCSkeleton::GetCallingPid() : appRecord->
GetCallerPid
();
in ApplicationForegrounded()
3554
auto callerPid = appRecord->
GetCallerPid
() == -1 ? IPCSkeleton::GetCallingPid() : appRecord->
GetCallerPid
();
in SendCreateAtomicServiceProcessEvent()
3566
auto callerPid = appRecord->
GetCallerPid
() == -1 ? IPCSkeleton::GetCallingPid() : appRecord->
GetCallerPid
();
in SendProcessStartEvent()
3607
auto callerPid = appRecord->
GetCallerPid
() == -1 ? IPCSkeleton::GetCallingPid() : appRecord->
GetCallerPid
();
in SendProcessStartFailedEvent()
7353
int32_t callerPid = appRecord->
GetCallerPid
() == -1 ?
in NotifyAppFaultBySA()
7354
IPCSkeleton::GetCallingPid() : appRecord->
GetCallerPid
();
in NotifyAppFaultBySA()
[all...]
H
A
D
app_running_record.cpp
269
int32_t AppRunningRecord::
GetCallerPid
() const
in GetCallerPid()
function in OHOS::AppExecFwk::AppRunningRecord
/foundation/ability/ability_runtime/services/abilitymgr/src/
H
A
D
connection_state_item.cpp
159
return info && info->IsNotHap() && info->
GetCallerPid
() == caller.callerPid;
in AddCaller()
179
return info && info->IsNotHap() && info->
GetCallerPid
() == caller.callerPid;
in RemoveCaller()
212
int32_t
GetCallerPid
() const
in GetCallerPid()
function in OHOS::AAFwk::ConnectedDataAbility::CallerInfo
252
record->
GetCallerPid
(), record->GetCallerName());
in CreateConnectionStateItem()
H
A
D
connection_state_manager.cpp
127
HandleCallerDied(connectionRecord->
GetCallerPid
());
in RemoveConnection()
328
auto callerPid = connectionRecord->
GetCallerPid
();
in AddConnectionInner()
351
auto callerPid = connectionRecord->
GetCallerPid
();
in RemoveConnectionInner()
H
A
D
connection_record.cpp
305
int32_t ConnectionRecord::
GetCallerPid
() const
in GetCallerPid()
function in OHOS::AAFwk::ConnectionRecord
/foundation/ability/ability_runtime/services/abilitymgr/include/
H
A
D
connection_record.h
143
int32_t
GetCallerPid
() const;
/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrevent_fuzzer/
H
A
D
abilityappmgrevent_fuzzer.cpp
52
AppMgrEventUtil::
GetCallerPid
(callerAppRecord);
in DoSomethingInterestingWithMyAPI()
/foundation/communication/ipc/ipc/native/src/mock/include/
H
A
D
iremote_invoker.h
66
virtual pid_t
GetCallerPid
() const = 0;
H
A
D
dbinder_databus_invoker.h
42
pid_t
GetCallerPid
() const override;
H
A
D
binder_invoker.h
107
pid_t
GetCallerPid
() const override;
H
A
D
dbinder_base_invoker_process.h
54
const pid_t oldPid =
GetCallerPid
();
in ProcessTransaction()
/foundation/communication/ipc/ipc/native/test/unittest/common/
H
A
D
mock_iremote_invoker.h
53
MOCK_CONST_METHOD0(
GetCallerPid
, pid_t());
H
A
D
dbinder_callback_stub_unittest.cpp
223
EXPECT_CALL(*invoker,
GetCallerPid
())
in HWTEST_F()
261
EXPECT_CALL(*invoker,
GetCallerPid
())
in HWTEST_F()
H
A
D
ipc_object_stub_unittest.cpp
1045
EXPECT_CALL(*invoker,
GetCallerPid
())
in HWTEST_F()
1085
EXPECT_CALL(*invoker,
GetCallerPid
())
in HWTEST_F()
1125
EXPECT_CALL(*invoker,
GetCallerPid
())
in HWTEST_F()
H
A
D
binder_invoker_unittest.cpp
487
* @tc.desc: Override
GetCallerPid
branch
494
EXPECT_EQ(binderInvoker.
GetCallerPid
(), 1);
in HWTEST_F()
H
A
D
ipc_binder_databus_invoker_unittest.cpp
164
* @tc.desc:
GetCallerPid
172
pid_t ret = testInvoker.
GetCallerPid
();
in HWTEST_F()
/foundation/communication/ipc/ipc/native/test/fuzztest/mock/binderinvoker_fuzzer/
H
A
D
binderinvoker_fuzzer.cpp
112
invoker->
GetCallerPid
();
in GetCallerInfoTest()
/foundation/communication/ipc/ipc/native/test/fuzztest/mock/dbinderdatabusinvoker_fuzzer/
H
A
D
dbinderdatabusinvoker_fuzzer.cpp
135
invoker.
GetCallerPid
();
in GetCallerPidTest()
/foundation/communication/ipc/ipc/native/src/core/source/
H
A
D
ipc_skeleton.cpp
110
return invoker->
GetCallerPid
();
in GetCallingPid()
/foundation/ability/ability_runtime/test/fuzztest/connectionstatemanager_fuzzer/
H
A
D
connectionstatemanager_fuzzer.cpp
167
connectionRecord->
GetCallerPid
();
in DoSomethingInterestingWithMyAPI()
/foundation/communication/ipc/ipc/native/src/mock/source/
H
A
D
binder_invoker.cpp
389
pid =
GetCallerPid
();
in GetDBinderCallingPidUid()
1379
pid_t BinderInvoker::
GetCallerPid
() const
in GetCallerPid()
function in OHOS::IPC_SINGLE::BinderInvoker
H
A
D
dbinder_databus_invoker.cpp
686
pid_t DBinderDatabusInvoker::
GetCallerPid
() const
in GetCallerPid()
function in OHOS::DBinderDatabusInvoker
Completed in 35 milliseconds