Home
last modified time | relevance | path

Searched refs:tmp (Results 1 - 25 of 543) sorted by relevance

12345678910>>...22

/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_toolkit/unittest/
H A Dwifi_config_file_test.cpp38 WifiConfig tmp; in HWTEST_F() local
39 tmp.defaultWifiInterface = "abcd"; in HWTEST_F()
40 tmp.scanAlwaysSwitch = true; in HWTEST_F()
41 tmp.staAirplaneMode = static_cast<int>(OperatorWifiType::WIFI_DISABLED); in HWTEST_F()
42 tmp.staLastState = true; in HWTEST_F()
43 tmp.savedDeviceAppraisalPriority = PRIORITY_1; in HWTEST_F()
44 tmp.scoretacticsScoreSlope = SCORE_SLOPE; in HWTEST_F()
45 tmp.scoretacticsInitScore = INIT_SCORE; in HWTEST_F()
46 tmp.scoretacticsSameBssidScore = SAME_BSSID_SCORE; in HWTEST_F()
47 tmp in HWTEST_F()
93 WifiDeviceConfig tmp; HWTEST_F() local
150 HotspotConfig tmp; HWTEST_F() local
191 StationInfo tmp; HWTEST_F() local
[all...]
H A Dwifi_ip_tools_test.cpp42 std::vector<unsigned char> tmp; in HWTEST_F() local
43 EXPECT_TRUE(IpTools::ConvertIpv6Address(tmp) == ""); in HWTEST_F()
45 tmp.push_back(0x20); in HWTEST_F()
46 tmp.push_back(0x01); in HWTEST_F()
47 tmp.push_back(0x0d); in HWTEST_F()
48 tmp.push_back(0xb8); in HWTEST_F()
49 tmp.push_back(0x3c); in HWTEST_F()
50 tmp.push_back(0x4d); in HWTEST_F()
51 tmp.push_back(0x00); in HWTEST_F()
52 tmp in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/common/plugin_adapter/
H A Dplugin_bridge.cpp23 std::string tmp = SystemProperties::GetBrand(); in ProcessSystemParam() local
24 if (tmp != SystemProperties::INVALID_PARAM) { in ProcessSystemParam()
25 infoList->Put("brand", tmp.c_str()); in ProcessSystemParam()
27 tmp = SystemProperties::GetManufacturer(); in ProcessSystemParam()
28 if (tmp != SystemProperties::INVALID_PARAM) { in ProcessSystemParam()
29 infoList->Put("manufacturer", tmp.c_str()); in ProcessSystemParam()
31 tmp = SystemProperties::GetModel(); in ProcessSystemParam()
32 if (tmp != SystemProperties::INVALID_PARAM) { in ProcessSystemParam()
33 infoList->Put("model", tmp.c_str()); in ProcessSystemParam()
35 tmp in ProcessSystemParam()
[all...]
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/generic/
H A Dplatform_device_gles.cpp29 const ImageDescGLES& tmp = (const ImageDescGLES&)platformData; in CreateGpuImageView() local
30 data.type = tmp.type; in CreateGpuImageView()
31 data.image = tmp.image; in CreateGpuImageView()
32 data.bytesperpixel = tmp.bytesperpixel; in CreateGpuImageView()
33 data.dataType = tmp.dataType; in CreateGpuImageView()
34 data.format = tmp.format; in CreateGpuImageView()
35 data.internalFormat = tmp.internalFormat; in CreateGpuImageView()
36 data.eglImage = tmp.eglImage; in CreateGpuImageView()
37 data.hwBuffer = tmp.platformHwBuffer; in CreateGpuImageView()
42 const ImageDescGL& tmp in CreateGpuImageView() local
[all...]
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/streamdepacketizer_fuzzer/
H A Dstreamdepacketizer_fuzzer.cpp34 char tmp[Communication::SoftBus::MAX_STREAM_LEN - OVERHEAD_LEN + 1] = {0}; in DepacketizeHeaderTest() local
35 if (memcpy_s(tmp, sizeof(tmp) - 1, data, sizeof(tmp) - 1) != EOK) { in DepacketizeHeaderTest()
40 decode.DepacketizeHeader((const char *)tmp); in DepacketizeHeaderTest()
48 char tmp[Communication::SoftBus::MAX_STREAM_LEN - OVERHEAD_LEN + 1] = {0}; in DepacketizeBufferTest() local
49 if (memcpy_s(tmp, sizeof(tmp) - 1, data, sizeof(tmp) - 1) != EOK) { in DepacketizeBufferTest()
54 decode.DepacketizeBuffer((char *)tmp, sizeo in DepacketizeBufferTest()
[all...]
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/deactivemetanode_fuzzer/
H A Ddeactivemetanode_fuzzer.cpp30 char *tmp = reinterpret_cast<char *>(malloc(size)); in DeactiveMetaNodeTest() local
31 if (tmp == nullptr) { in DeactiveMetaNodeTest()
34 if (memset_s(tmp, size, '\0', size) != EOK) { in DeactiveMetaNodeTest()
35 free(tmp); in DeactiveMetaNodeTest()
38 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DeactiveMetaNodeTest()
39 free(tmp); in DeactiveMetaNodeTest()
43 DeactiveMetaNode(reinterpret_cast<const char *>(tmp), reinterpret_cast<const char *>(tmp)); in DeactiveMetaNodeTest()
44 free(tmp); in DeactiveMetaNodeTest()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/setnodedatachangeflag_fuzzer/
H A Dsetnodedatachangeflag_fuzzer.cpp31 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
32 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
35 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
36 free(tmp); in DoSomethingInterestingWithMyAPI()
39 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DoSomethingInterestingWithMyAPI()
40 free(tmp); in DoSomethingInterestingWithMyAPI()
45 SetNodeDataChangeFlag(reinterpret_cast<const char *>(tmp), in DoSomethingInterestingWithMyAPI()
46 reinterpret_cast<const char *>(tmp), DATA_CHANGE_FLAG); in DoSomethingInterestingWithMyAPI()
47 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/getnodekeyinfo_fuzzer/
H A Dgetnodekeyinfo_fuzzer.cpp33 char *tmp = reinterpret_cast<char *>(malloc(size)); in GetNodeKeyInfoTest() local
34 if (tmp == nullptr) { in GetNodeKeyInfoTest()
37 if (memset_s(tmp, size, '\0', size) != EOK) { in GetNodeKeyInfoTest()
38 free(tmp); in GetNodeKeyInfoTest()
41 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in GetNodeKeyInfoTest()
42 free(tmp); in GetNodeKeyInfoTest()
47 GetNodeKeyInfo(reinterpret_cast<const char *>(tmp), in GetNodeKeyInfoTest()
48 reinterpret_cast<const char *>(tmp), key, udid, UDID_BUF_LEN); in GetNodeKeyInfoTest()
49 free(tmp); in GetNodeKeyInfoTest()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/leavelnn_fuzzer/
H A Dleavelnn_fuzzer.cpp36 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
37 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
40 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
41 free(tmp); in DoSomethingInterestingWithMyAPI()
44 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DoSomethingInterestingWithMyAPI()
45 free(tmp); in DoSomethingInterestingWithMyAPI()
49 LeaveLNN(reinterpret_cast<const char *>(tmp), reinterpret_cast<const char *>(tmp), OnLeaveLNNResult); in DoSomethingInterestingWithMyAPI()
50 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/stoptimesync_fuzzer/
H A Dstoptimesync_fuzzer.cpp30 char *tmp = reinterpret_cast<char *>(malloc(size)); in StopTimeSyncTest() local
31 if (tmp == nullptr) { in StopTimeSyncTest()
34 if (memset_s(tmp, size, '\0', size) != EOK) { in StopTimeSyncTest()
35 free(tmp); in StopTimeSyncTest()
38 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in StopTimeSyncTest()
39 free(tmp); in StopTimeSyncTest()
44 StopTimeSync(reinterpret_cast<const char *>(tmp), reinterpret_cast<const char *>(tmp)); in StopTimeSyncTest()
45 free(tmp); in StopTimeSyncTest()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/stoppublishlnn_fuzzer/
H A Dstoppublishlnn_fuzzer.cpp30 char *tmp = reinterpret_cast<char *>(malloc(size)); in StopPublishLNNTest() local
31 if (tmp == nullptr) { in StopPublishLNNTest()
34 if (memset_s(tmp, size, '\0', size) != EOK) { in StopPublishLNNTest()
35 free(tmp); in StopPublishLNNTest()
38 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in StopPublishLNNTest()
39 free(tmp); in StopPublishLNNTest()
44 StopPublishLNN(reinterpret_cast<const char *>(tmp), in StopPublishLNNTest()
45 *const_cast<int32_t *>(reinterpret_cast<const int32_t *>(tmp))); in StopPublishLNNTest()
46 free(tmp); in StopPublishLNNTest()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/stoprefreshlnn_fuzzer/
H A Dstoprefreshlnn_fuzzer.cpp30 char *tmp = reinterpret_cast<char *>(malloc(size)); in StopRefreshLNNTest() local
31 if (tmp == nullptr) { in StopRefreshLNNTest()
34 if (memset_s(tmp, size, '\0', size) != EOK) { in StopRefreshLNNTest()
35 free(tmp); in StopRefreshLNNTest()
38 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in StopRefreshLNNTest()
39 free(tmp); in StopRefreshLNNTest()
44 StopRefreshLNN(reinterpret_cast<const char *>(tmp), in StopRefreshLNNTest()
45 *const_cast<int32_t *>(reinterpret_cast<const int32_t *>(tmp))); in StopRefreshLNNTest()
46 free(tmp); in StopRefreshLNNTest()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/starttimesync_fuzzer/
H A Dstarttimesync_fuzzer.cpp43 char *tmp = reinterpret_cast<char *>(malloc(size)); in StartTimeSyncTest() local
44 if (tmp == nullptr) { in StartTimeSyncTest()
47 if (memset_s(tmp, size, '\0', size) != EOK) { in StartTimeSyncTest()
48 free(tmp); in StartTimeSyncTest()
51 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in StartTimeSyncTest()
52 free(tmp); in StartTimeSyncTest()
57 StartTimeSync(reinterpret_cast<const char *>(tmp), in StartTimeSyncTest()
58 reinterpret_cast<const char *>(tmp), timeAccuracy, period, &g_timeSyncCb); in StartTimeSyncTest()
59 free(tmp); in StartTimeSyncTest()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/activemetanode_fuzzer/
H A Dactivemetanode_fuzzer.cpp41 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
42 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
45 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
46 free(tmp); in DoSomethingInterestingWithMyAPI()
49 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DoSomethingInterestingWithMyAPI()
50 free(tmp); in DoSomethingInterestingWithMyAPI()
55 int32_t ret = ActiveMetaNode(reinterpret_cast<const char *>(tmp), &meta, metaNodeId); in DoSomethingInterestingWithMyAPI()
57 DeactiveMetaNode(reinterpret_cast<const char *>(tmp), metaNodeId); in DoSomethingInterestingWithMyAPI()
59 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/joinlnn_fuzzer/
H A Djoinlnn_fuzzer.cpp58 char *tmp = reinterpret_cast<char *>(malloc(size)); in JoinLnnFuzzerTest() local
59 if (tmp == nullptr) { in JoinLnnFuzzerTest()
62 if (memset_s(tmp, size, '\0', size) != EOK) { in JoinLnnFuzzerTest()
63 free(tmp); in JoinLnnFuzzerTest()
66 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in JoinLnnFuzzerTest()
67 free(tmp); in JoinLnnFuzzerTest()
73 JoinLNN(reinterpret_cast<const char *>(tmp), &addr, OnJoinLNNResult); in JoinLnnFuzzerTest()
74 LeaveLNN(reinterpret_cast<const char *>(tmp), reinterpret_cast<const char *>(tmp), OnLeaveLNNResult); in JoinLnnFuzzerTest()
75 free(tmp); in JoinLnnFuzzerTest()
[all...]
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/getallmetanodeinfo_fuzzer/
H A Dgetallmetanodeinfo_fuzzer.cpp34 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
35 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
38 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
39 free(tmp); in DoSomethingInterestingWithMyAPI()
42 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DoSomethingInterestingWithMyAPI()
43 free(tmp); in DoSomethingInterestingWithMyAPI()
48 GetAllMetaNodeInfo(reinterpret_cast<const char *>(tmp), info, &infoNum); in DoSomethingInterestingWithMyAPI()
49 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/unregdatalevelchangecb_fuzzer/
H A Dunregdatalevelchangecb_fuzzer.cpp34 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
35 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
38 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
39 free(tmp); in DoSomethingInterestingWithMyAPI()
42 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DoSomethingInterestingWithMyAPI()
43 free(tmp); in DoSomethingInterestingWithMyAPI()
48 UnregDataLevelChangeCb(reinterpret_cast<const char *>(tmp)); in DoSomethingInterestingWithMyAPI()
49 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/getlocalnodedeviceinfo_fuzzer/
H A Dgetlocalnodedeviceinfo_fuzzer.cpp32 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
33 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
36 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
37 free(tmp); in DoSomethingInterestingWithMyAPI()
40 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DoSomethingInterestingWithMyAPI()
41 free(tmp); in DoSomethingInterestingWithMyAPI()
46 GetLocalNodeDeviceInfo(reinterpret_cast<const char *>(tmp), &localNodeinfo); in DoSomethingInterestingWithMyAPI()
47 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/setdatalevel_fuzzer/
H A Dsetdatalevel_fuzzer.cpp34 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
35 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
38 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
39 free(tmp); in DoSomethingInterestingWithMyAPI()
42 if (memcpy_s(tmp, size, data, size) != EOK) { in DoSomethingInterestingWithMyAPI()
43 free(tmp); in DoSomethingInterestingWithMyAPI()
48 SetDataLevel(reinterpret_cast<const DataLevel *>(tmp)); in DoSomethingInterestingWithMyAPI()
49 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/regdatalevelchangecb_fuzzer/
H A Dregdatalevelchangecb_fuzzer.cpp44 char *tmp = reinterpret_cast<char *>(malloc(size)); in DoSomethingInterestingWithMyAPI() local
45 if (tmp == nullptr) { in DoSomethingInterestingWithMyAPI()
48 if (memset_s(tmp, size, '\0', size) != EOK) { in DoSomethingInterestingWithMyAPI()
49 free(tmp); in DoSomethingInterestingWithMyAPI()
52 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in DoSomethingInterestingWithMyAPI()
53 free(tmp); in DoSomethingInterestingWithMyAPI()
58 RegDataLevelChangeCb(reinterpret_cast<const char *>(tmp), &dataLevelCb); in DoSomethingInterestingWithMyAPI()
59 free(tmp); in DoSomethingInterestingWithMyAPI()
/foundation/communication/dsoftbus/adapter/common/kernel/liteos_m/
H A Dsoftbus_adapter_mem.c31 void *tmp = OhosMalloc(MEM_TYPE_SOFTBUS_LSRAM, size); in SoftBusMalloc() local
33 void *tmp = malloc(size); in SoftBusMalloc() local
35 return tmp; in SoftBusMalloc()
40 void *tmp = SoftBusMalloc(size); in SoftBusCalloc() local
41 if (tmp == NULL) { in SoftBusCalloc()
45 errno_t err = memset_s(tmp, size, 0, size); in SoftBusCalloc()
47 SoftBusFree(tmp); in SoftBusCalloc()
50 return tmp; in SoftBusCalloc()
/foundation/communication/bluetooth/frameworks/inner/ipc/common/
H A Dbt_uuid.cpp85 std::string tmp = name; in ConvertFromString() local
86 std::size_t pos = tmp.find("-"); in ConvertFromString()
89 tmp.replace(pos, 1, ""); in ConvertFromString()
90 pos = tmp.find("-"); in ConvertFromString()
93 for (std::size_t i = 0; (i + 1) < tmp.length(); i += SIZE_STRING_TO_INT) { in ConvertFromString()
94 ret.uuid_[i / SIZE_STRING_TO_INT] = std::stoi(tmp.substr(i, SIZE_STRING_TO_INT), nullptr, UUID128_BYTES_TYPE); in ConvertFromString()
102 Uuid tmp; in ConvertFrom16Bits() local
103 tmp.uuid_[UUID_TIME_LOW_THIRD_BYTE] = static_cast<uint8_t>((uuid & 0xFF00) >> BASE_BIT_OPT_SIZE); in ConvertFrom16Bits()
104 tmp.uuid_[UUID_TIME_LOW_FOURTH_BYTE] = static_cast<uint8_t>(uuid & 0x00FF); in ConvertFrom16Bits()
105 return tmp; in ConvertFrom16Bits()
110 Uuid tmp; ConvertFrom32Bits() local
138 Uuid tmp; ConvertFromMostAndLeastBit() local
154 Uuid tmp; ConvertFrom128Bits() local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/state_manage/
H A Dcj_persistent_storage_ffi.cpp62 std::string tmp; in FfiOHOSAceFrameworkPersistentGetString()
63 if (GetValueFromStorage(key, tmp)) { in FfiOHOSAceFrameworkPersistentGetString()
65 result.value = Utils::MallocCString(tmp).value; in FfiOHOSAceFrameworkPersistentGetString()
92 std::string tmp; in FfiOHOSAceFrameworkPersistentGetInt64()
93 if (GetValueFromStorage(key, tmp)) { in FfiOHOSAceFrameworkPersistentGetInt64()
95 result.value = std::stoll(tmp); in FfiOHOSAceFrameworkPersistentGetInt64()
107 std::string tmp = std::to_string(value); in FfiOHOSAceFrameworkPersistentSetInt64()
108 SetValueToStorage(key, tmp); in FfiOHOSAceFrameworkPersistentSetInt64()
123 std::string tmp; in FfiOHOSAceFrameworkPersistentGetFloat64()
124 if (GetValueFromStorage(key, tmp)) { in FfiOHOSAceFrameworkPersistentGetFloat64()
[all...]
/foundation/communication/dsoftbus/tests/sdk/bus_center/fuzztest/getallnodedeviceinfo_fuzzer/
H A Dgetallnodedeviceinfo_fuzzer.cpp32 char *tmp = reinterpret_cast<char *>(malloc(size)); in GetAllNodeDeviceInfoTest() local
33 if (tmp == nullptr) { in GetAllNodeDeviceInfoTest()
36 if (memset_s(tmp, size, '\0', size) != EOK) { in GetAllNodeDeviceInfoTest()
37 free(tmp); in GetAllNodeDeviceInfoTest()
40 if (memcpy_s(tmp, size, data, size - 1) != EOK) { in GetAllNodeDeviceInfoTest()
41 free(tmp); in GetAllNodeDeviceInfoTest()
46 int32_t ret = GetAllNodeDeviceInfo(reinterpret_cast<const char *>(tmp), &info, &infoNum); in GetAllNodeDeviceInfoTest()
50 free(tmp); in GetAllNodeDeviceInfoTest()
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/sessionmock_fuzzer/
H A Dsessionmock_fuzzer.cpp97 char *tmp = const_cast<char *>(reinterpret_cast<const char *>(data)); in SendBytesInnerTest() local
98 SendBytesInner(sessionId, tmp, size); in SendBytesInnerTest()
108 int32_t *tmp = const_cast<int32_t *>(reinterpret_cast<const int32_t *>(data)); in GetPeerUidInnerTest() local
109 GetPeerUidInner(sessionId, tmp); in GetPeerUidInnerTest()
119 int32_t *tmp = const_cast<int32_t *>(reinterpret_cast<const int32_t *>(data)); in GetPeerPidInnerTest() local
120 GetPeerPidInner(sessionId, tmp); in GetPeerPidInnerTest()
130 int32_t *tmp = const_cast<int32_t *>(reinterpret_cast<const int32_t *>(data)); in IsServerSideInnerTest() local
131 IsServerSideInner(sessionId, tmp); in IsServerSideInnerTest()
141 char *tmp = const_cast<char *>(reinterpret_cast<const char *>(data)); in GetMySessionNameInnerTest() local
142 GetMySessionNameInner(sessionId, tmp, siz in GetMySessionNameInnerTest()
152 char *tmp = const_cast<char *>(reinterpret_cast<const char *>(data)); GetPeerSessionNameInnerTest() local
163 char *tmp = const_cast<char *>(reinterpret_cast<const char *>(data)); GetPeerDeviceIdInnerTest() local
174 char *tmp = const_cast<char *>(reinterpret_cast<const char *>(data)); GetPkgNameInnerTest() local
[all...]

Completed in 8 milliseconds

12345678910>>...22