Home
last modified time | relevance | path

Searched refs:address (Results 1 - 6 of 6) sorted by relevance

/commonlibrary/ets_utils/js_util_module/util/
H A Djs_base64.h73 void FreeMemory(unsigned char *&address);
74 void FreeMemory(char *&address);
H A Djs_base64.cpp773 void FreeMemory(char *&address) in FreeMemory() argument
775 if (address != nullptr) { in FreeMemory()
776 delete[] address; in FreeMemory()
777 address = nullptr; in FreeMemory()
780 void FreeMemory(unsigned char *&address) in FreeMemory() argument
782 if (address != nullptr) { in FreeMemory()
783 delete[] address; in FreeMemory()
784 address = nullptr; in FreeMemory()
H A Dnative_module_util.cpp180 static void FreeMemory(napi_value *address) in FreeMemory() argument
182 delete[] address; in FreeMemory()
183 address = nullptr; in FreeMemory()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/
H A Dslab.rs111 /// Get the number of `page` pages at the current address
212 /// Used to get the reference stored at the given address
407 // Get the first address of the current `page` in index_for()
410 // Get the current `slot` address in index_for()
549 /// 1. Allocate container space and deposit data, get the data address,and
551 /// 2. Create invalid data address to see if data can be obtained.
575 let mut address = Vec::new(); in ut_slab_compact() variables
581 address.push((addr, foo)); in ut_slab_compact()
584 assert_eq!(slab.get(address[32].0).unwrap().id.load(SeqCst), 32); in ut_slab_compact()
588 let mut address in ut_slab_compact() variables
[all...]
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Dproxy.rs43 /// address of request.
47 /// - Manage the uri of destination address.
204 let address = match Uri::from_bytes(host.as_bytes()) {
211 match address.host().unwrap().as_str().parse::<IpAddr>() {
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/
H A Dudp.rs89 /// Creates a new UDP socket and attempts to bind it to the address provided
129 /// Sets the default address for the UdpSocket and limits packets to
130 /// those that are read via recv from the specific address.
182 "addr could not resolve to any address",
186 /// Returns the local address that this socket is bound to.
206 /// Sends data on the socket to the given address. On success, returns the
241 "addr could not resolve to address",
246 /// Attempts to send data on the socket to the given address.
279 /// Attempts to send data on the socket to a given address.
325 /// * `Ok((n, addr))` n is the number of bytes received, addr is the address
[all...]

Completed in 8 milliseconds