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:UdpSock
(Results
1 - 6
of
6
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/udp/
H
A
D
socket.rs
24
pub(crate) struct
UdpSock
{
28
impl
UdpSock
{
impls
29
pub(crate) fn new_socket(addr: SocketAddr) -> io::Result<
UdpSock
> {
31
UdpSock
::create_socket(AF_INET, SOCK_DGRAM)
33
UdpSock
::create_socket(AF_INET6, SOCK_DGRAM)
37
pub(crate) fn create_socket(domain: c_int, socket_type: c_int) -> io::Result<
UdpSock
> {
39
Ok(
UdpSock
{
56
impl AsRawFd for
UdpSock
{
62
impl FromRawFd for
UdpSock
{
63
unsafe fn from_raw_fd(fd: RawFd) ->
UdpSock
{
in from_raw_fd()
[all...]
H
A
D
mod.rs
17
pub(crate) use socket::
UdpSock
;
H
A
D
udp_socket.rs
19
use super::
UdpSock
;
89
let socket =
UdpSock
::new_socket(addr)?;
in bind()
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/udp/
H
A
D
socket.rs
27
pub(crate) struct
UdpSock
{
31
impl
UdpSock
{
impls
33
pub(crate) fn new_socket(addr: SocketAddr) -> io::Result<
UdpSock
> {
41
fn create_socket(domain: ADDRESS_FAMILY, socket_type: u16) -> io::Result<
UdpSock
> {
in create_socket()
55
Ok(_) => Ok(
UdpSock
{ socket }),
in create_socket()
H
A
D
mod.rs
15
pub(crate) use socket::
UdpSock
;
H
A
D
udp_socket.rs
20
use crate::sys::windows::udp::
UdpSock
;
43
let sock =
UdpSock
::new_socket(addr)?;
in bind()
Completed in 4 milliseconds