Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 25 of 239) sorted by relevance

12345678910

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dproxy_filesystem.cpp45 AppendSearchPath(destination); in ProxyFilesystem()
66 if (destination.back() == '/') { in RemoveSearchPath()
67 destination.remove_suffix(1); in RemoveSearchPath()
79 for (auto&& destination : destinations_) { in GetEntry()
92 for (auto&& destination : destinations_) { in OpenFile()
107 for (auto&& destination : destinations_) { in CreateFile()
122 for (auto&& destination : destinations_) { in DeleteFile()
138 for (auto&& destination : destinations_) { in OpenDirectory()
157 for (auto&& destination : destinations_) { in CreateDirectory()
172 for (auto&& destination : destinations_) { in DeleteDirectory()
[all …]
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dcolor_converter_test.cpp81 uint32_t destination[3] = { 0 }; variable
117 uint32_t destination[3] = { 0 }; variable
154 uint32_t destination[3] = { 0 }; variable
191 uint32_t destination[3] = { 0 }; variable
230 uint32_t destination[3] = { 0 }; variable
269 uint32_t destination[3] = { 0 }; variable
308 uint32_t destination[3] = { 0 }; variable
347 uint32_t destination[3] = { 0 }; variable
386 uint32_t destination[3] = { 0 }; variable
425 uint16_t destination[3] = { 0 }; variable
[all …]
H A Dpixel_convert_test.cpp122 uint32_t destination[3] = { 0 }; variable
146 uint32_t destination[3] = { 0 }; variable
150 ASSERT_NE(destination[0], 1);
170 void *destination = nullptr; variable
241 uint32_t destination[8] = { 0 }; variable
281 uint32_t destination[8] = { 0 }; variable
321 uint32_t destination[8] = { 0 }; variable
361 uint32_t destination[8] = { 0 }; variable
401 uint32_t destination[8] = { 0 }; variable
441 uint32_t destination[8] = { 0 }; variable
[all …]
/ohos5.0/base/update/updater/services/diffpatch/
H A Ddiff_main.cpp21 std::string destination; member
40 diffParams.destination = optarg; in main()
59 if (diffParams.source != "" && diffParams.destination != "" && diffParams.patch != "") { in main()
64 diffParams.destination, in main()
69 diffParams.destination, in main()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-network-kit/
H A D_net_conn___route.md21 | [destination](#destination) | 目标地址。 |
30 ### destination subsection
33 NetConn_NetAddr NetConn_Route::destination
/ohos5.0/docs/en/application-dev/application-models/
H A Dstart-navigation-apps.md34 | destinationName | string | No | Name of the destination. |
35 | destinationLatitude | number | Yes | Latitude of the destination. |
36 | destinationLongitude | number | Yes | Longitude of the destination. |
44 | destinationName | string | Yes | Name of the destination. |
163 …| destinationName | string | No | Name of the destination. …
164 …| destinationLatitude | number | Yes | Latitude of the destination. …
165 …| destinationLongitude | number | Yes | Longitude of the destination. …
173 | destinationName | string | No | Name of the destination. |
174 | destinationLatitude | number | Yes | Latitude of the destination. |
175 | destinationLongitude | number | Yes | Longitude of the destination. |
[all …]
/ohos5.0/docs/en/application-dev/reference/apis-network-kit/
H A D_net_conn___route.md21 | [destination](#destination) | Destination address.|
30 ### destination subsection
33 NetConn_NetAddr NetConn_Route::destination
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dohos-arkui-advanced-MultiNavigation.md56 Pushes the specified navigation destination page to the navigation stack.
147 | name | string | Yes | Name of the navigation destination page. |
167 | number | Number of the navigation destination pages removed.|
185 | number | Number of the navigation destination pages removed.|
261 | name | string | Yes | Name of the navigation destination page.|
294 | index | number | Yes | Index of the navigation destination page.|
320 | name | string | Yes | Name of the navigation destination page.|
392 | index | number | Yes | Index of the navigation destination page.|
411 | name | string | Yes | Name of the navigation destination page.|
429 | name | string | Yes | Name of the navigation destination page.|
[all …]
/ohos5.0/build/lite/ndk/
H A Darchive_ndk.py26 def make_archive(source: str, destination: str):
27 base = os.path.basename(destination)
33 print('Zipping: ', source, destination, archive_from, archive_to)
35 shutil.move('%s.%s' % (name, file_format), destination)
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_selector.h73 …TextSelector(int32_t base, int32_t destination) : baseOffset(base), destinationOffset(destination)… in TextSelector()
89 void Update(int32_t base, int32_t destination) in Update()
91 if (base == baseOffset && destination == destinationOffset) { in Update()
94 bool isChanged = baseOffset != destinationOffset || base != destination; in Update()
96 destinationOffset = destination; in Update()
/ohos5.0/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/
H A Dwifi_direct_ip_manager.cpp183 std::string destination; in AddInterfaceAddress() local
184 ret = GetNetworkDestination(ipString, destination); in AddInterfaceAddress()
191 LOCAL_NETWORK_ID, interface, destination, gateWay); in AddInterfaceAddress()
203 std::string destination; in DeleteInterfaceAddress() local
204 ret = GetNetworkDestination(ipString, destination); in DeleteInterfaceAddress()
207 LOCAL_NETWORK_ID, interface, destination, gateWay); in DeleteInterfaceAddress()
240 …t WifiDirectIpManager::GetNetworkDestination(const std::string &ipString, std::string &destination) in GetNetworkDestination() argument
245 destination = ipString.substr(0, pos) + ".0/24"; in GetNetworkDestination()
246 … CONN_LOGI(CONN_WIFI_DIRECT, "destination=%{public}s", WifiDirectAnonymizeIp(destination).c_str()); in GetNetworkDestination()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_util.cpp842 std::string destination = ""; in CopyFileToSecurityDir() local
859 destination = CreateTempDir(destination); in CopyFileToSecurityDir()
864 toDeletePaths.emplace_back(destination); in CopyFileToSecurityDir()
865 destination.append(filePath.substr(lastPathSeperator)); in CopyFileToSecurityDir()
877 toDeletePaths.emplace_back(destination); in CopyFileToSecurityDir()
880 destination = CreateTempDir(destination.append(innerSubstr)); in CopyFileToSecurityDir()
881 destination.append(filePath.substr(thirdLastPathSep + 1)); in CopyFileToSecurityDir()
884 if (destination.empty()) { in CopyFileToSecurityDir()
889 if (!RenameFile(filePath, destination)) { in CopyFileToSecurityDir()
894 if (!CopyFileFast(filePath, destination)) { in CopyFileToSecurityDir()
[all …]
/ohos5.0/base/customization/enterprise_device_management/services/edm_plugin/src/network/rule/
H A Dchain_rule.cpp46 std::string destination; in ChainRule() local
47 iss >> destination; in ChainRule()
48 if (destination != defaultIp) { in ChainRule()
49 destAddr_ = destination; in ChainRule()
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/wifi_direct_cpp/
H A Dnet_conn_client.cpp38 …int32_t netId, const std::string &ifName, const std::string &destination, const std::string &nextH… in AddNetworkRoute() argument
44 return mock->AddNetworkRoute(netId, ifName, destination, nextHop); in AddNetworkRoute()
48 …int32_t netId, const std::string &ifName, const std::string &destination, const std::string &nextH… in RemoveNetworkRoute() argument
54 return mock->RemoveNetworkRoute(netId, ifName, destination, nextHop); in RemoveNetworkRoute()
H A Dnet_conn_client.h62 …int32_t netId, const std::string &ifName, const std::string &destination, const std::string &nextH…
64 …int32_t netId, const std::string &ifName, const std::string &destination, const std::string &nextH…
80 …int32_t(int32_t netId, const std::string &ifName, const std::string &destination, const std::strin…
85 …int32_t(int32_t netId, const std::string &ifName, const std::string &destination, const std::strin…
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-small-debug-shell-file-cp.md27 - The name of the source file cannot be the same as that of the destination file in the same path.
33 - If **DEST** is a directory, this directory must exist. In this case, the destination file is name…
35 - If the destination file path is a file, the directory for this file must exist. In this case, the…
37 - If the destination file does not exist, a new file is created. If the destination file already ex…
H A Dkernel-small-debug-shell-net-ping.md21 | -4 | Forcibly pings the destination address using the IPv4 protocol.| 0-65500 |
32 - The **ping** command is used to check whether the destination IP address is reachable.
34 - If the destination IP address is unreachable, the system displays a message indicating that the r…
36 - If no route is available to the destination IP address, an error message is displayed.
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/effect/
H A Dcolor_matrix_test.cpp81 scalar destination[20] = { 121.0f }; variable
82 colorMatrix->GetArray(destination);
98 scalar destination[20] = { 225.5f }; variable
99 colorMatrix->GetArray(destination);
/ohos5.0/foundation/communication/netmanager_ext/services/networksharemanager/src/
H A Dnetworkshare_sub_statemachine.cpp492 std::string destination; in RemoveRoutesToLocalNetwork() local
493 if (!FindDestinationAddr(destination)) { in RemoveRoutesToLocalNetwork()
510 std::string destination; in AddRoutesToLocalNetwork() local
511 if (!FindDestinationAddr(destination)) { in AddRoutesToLocalNetwork()
529 std::string destination; in AddIpv6AddrToLocalNetwork() local
538 destination = std::string(addressPrefix) + DEFAULT_PREFIX; in AddIpv6AddrToLocalNetwork()
548 destination = std::string(DEFAULT_LINK_ROUTE); in AddIpv6AddrToLocalNetwork()
568 bool NetworkShareSubStateMachine::FindDestinationAddr(std::string &destination) in FindDestinationAddr() argument
571 if (!GetBtDestinationAddr(destination)) { in FindDestinationAddr()
579 if (!GetWifiApDestinationAddr(destination)) { in FindDestinationAddr()
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_font_mgr.cpp74 static bool CopyStrData(char** destination, const std::string& source) in CopyStrData() argument
80 *destination = new (std::nothrow) char[destinationSize]; in CopyStrData()
81 if (*destination == nullptr) { in CopyStrData()
84 auto retCopy = strcpy_s(*destination, destinationSize, source.c_str()); in CopyStrData()
86 delete[] *destination; in CopyStrData()
87 *destination = nullptr; in CopyStrData()
/ohos5.0/commonlibrary/ets_utils/js_util_module/stream/src/
H A Dstream_js.ts479 pipe(destination: Writable, option?: Object): Writable {
482 write: destination,
484 destination.write(data.data);
485 …if ((destination.writableLength || 0) > (destination.writableHighWatermark || DEFAULT_HIGH_WATER_M…
496 destination.end();
503 destination.on('drain', (): void => {
509 destination?.listener?.emit('pipe', this);
510 return destination;
523 unpipe(destination?: Writable): Readable {
529 destination?.listener?.off('drain', obj.drainCallback);
[all …]
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/tools/profiler/
H A Djs_profiler.py62 output(msg, opt.destination)
71 with os.fdopen(os.open(dest, flags, modes), 'a+') as destination:
72 destination.write(msg + '\n')
H A DREADME.md22 python js_profiler.py --source D:\workspace\hmf\ace\lite\ace_profiler_582.log --destination D:\wor…
28 * `--destination` 生成的文件,例如 `D:\workspace\hmf\ace\lite\ace_profiler_582_real.log`
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/src/manager/
H A Ddns_manager.cpp46 void DnsManager::EnableIpv6(uint16_t netId, std::string &destination, const std::string &nextHop) in EnableIpv6() argument
48 auto pos = destination.find("/"); in EnableIpv6()
50 destination = destination.substr(0, pos); in EnableIpv6()
52 if (!(IsValidIPV6(destination) && (IsValidIPV6(nextHop) || nextHop.empty()))) { in EnableIpv6()
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/include/manager/
H A Dconn_manager.h153 …int32_t AddRoute(int32_t netId, std::string interfaceName, std::string destination, std::string ne…
166 …int32_t RemoveRoute(int32_t netId, std::string interfaceName, std::string destination, std::string…
179 …int32_t UpdateRoute(int32_t netId, std::string interfaceName, std::string destination, std::string…

12345678910