/base/startup/appspawn/test/unittest/app_spawn_standard_test/ |
H A D | app_spawn_appmgr_test.cpp | 315 AppSpawnMsgNode *outMsg = nullptr; in HWTEST_F() local 328 &outMsg, inputMsgLen[j], inputReminder[k]); in HWTEST_F() 330 DeleteAppSpawnMsg(outMsg); in HWTEST_F() 364 AppSpawnMsgNode *outMsg = nullptr; in HWTEST_F() local 370 ret = GetAppSpawnMsgFromBuffer(buffer.data(), currLen, &outMsg, &msgRecvLen, &reminder); in HWTEST_F() 373 EXPECT_EQ(memcmp(buffer.data(), &outMsg->msgHeader, currLen), 0); in HWTEST_F() 375 ret = GetAppSpawnMsgFromBuffer(buffer.data() + currLen, sizeof(uint32_t), &outMsg, &msgRecvLen, &reminder); in HWTEST_F() 379 EXPECT_EQ(memcmp(buffer.data(), &outMsg->msgHeader, currLen), 0); in HWTEST_F() 384 sizeof(AppSpawnMsg) - currLen, &outMsg, &msgRecvLen, &reminder); in HWTEST_F() 388 EXPECT_EQ(memcmp(buffer.data(), &outMsg in HWTEST_F() 412 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 438 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 486 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 534 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 569 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 601 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 638 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 699 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 744 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 799 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 833 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 889 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 926 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 982 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 1025 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local 1073 AppSpawnMsgNode *outMsg = nullptr; HWTEST_F() local [all...] |
H A D | app_spawn_sandboxmgr_test.cpp | 459 AppSpawnMsgNode *outMsg = nullptr; in TestCreateAppSpawningCtx() local 462 ret = GetAppSpawnMsgFromBuffer(buffer.data(), msgLen, &outMsg, &msgRecvLen, &reminder); in TestCreateAppSpawningCtx() 465 EXPECT_EQ(memcmp(buffer.data() + sizeof(AppSpawnMsg), outMsg->buffer, msgLen - sizeof(AppSpawnMsg)), 0); in TestCreateAppSpawningCtx() 467 ret = DecodeAppSpawnMsg(outMsg); in TestCreateAppSpawningCtx() 471 appCtx->message = outMsg; in TestCreateAppSpawningCtx()
|
/base/security/device_auth/frameworks/src/lite/ |
H A D | ipc_callback_proxy.c | 54 uintptr_t outMsg = 0x0;
in CbProxySendRequest() local 77 ret = SendRequest(sid, DEV_AUTH_CALLBACK_REQUEST, reqData, &replyTmp, option, &outMsg);
in CbProxySendRequest() 84 FreeBuffer((void *)outMsg);
in CbProxySendRequest()
|
/base/startup/init/test/systest/ |
H A D | loopserver_systest.c | 341 Message **outMsg, uint32_t *msgRecvLen, uint32_t *reminder) in GetMsgFromBuffer() 343 if (buffer == NULL || outMsg == NULL || msgRecvLen == NULL || reminder == NULL) { in GetMsgFromBuffer() 348 Message *message = *outMsg; in GetMsgFromBuffer() 355 *outMsg = message; in GetMsgFromBuffer() 340 GetMsgFromBuffer(const uint8_t *buffer, uint32_t bufferLen, Message **outMsg, uint32_t *msgRecvLen, uint32_t *reminder) GetMsgFromBuffer() argument
|
/base/startup/appspawn/standard/ |
H A D | appspawn_msgmgr.c | 296 AppSpawnMsgNode **outMsg, uint32_t *msgRecvLen, uint32_t *reminder) in GetAppSpawnMsgFromBuffer() 298 APPSPAWN_CHECK_ONLY_EXPER(buffer != NULL && outMsg != NULL, return APPSPAWN_MSG_INVALID); in GetAppSpawnMsgFromBuffer() 301 AppSpawnMsgNode *message = *outMsg; in GetAppSpawnMsgFromBuffer() 305 *outMsg = message; in GetAppSpawnMsgFromBuffer() 295 GetAppSpawnMsgFromBuffer(const uint8_t *buffer, uint32_t bufferLen, AppSpawnMsgNode **outMsg, uint32_t *msgRecvLen, uint32_t *reminder) GetAppSpawnMsgFromBuffer() argument
|
H A D | appspawn_manager.h | 168 AppSpawnMsgNode **outMsg, uint32_t *msgRecvLen, uint32_t *reminder);
|