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:set_broadcast
(Results
1 - 4
of
4
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/udp/
H
A
D
udp_socket.rs
282
/// broadcast_socket.
set_broadcast
(true)?;
288
pub fn
set_broadcast
(&self, on: bool) -> io::Result<()> {
in set_broadcast()
functions
289
self.inner.
set_broadcast
(on)
in set_broadcast()
625
/// connect_socket.
set_broadcast
(true)?;
631
pub fn
set_broadcast
(&self, on: bool) -> io::Result<()> {
in set_broadcast()
functions
632
self.inner.
set_broadcast
(on)
in set_broadcast()
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/udp/
H
A
D
udp_socket.rs
167
/// .
set_broadcast
(false)
168
/// .expect("
set_broadcast
call failed");
170
pub fn
set_broadcast
(&self, on: bool) -> io::Result<()> {
in set_broadcast()
functions
171
self.inner.
set_broadcast
(on)
in set_broadcast()
185
/// .
set_broadcast
(false)
186
/// .expect("
set_broadcast
call failed");
505
/// connect_socket.
set_broadcast
(true)?;
511
pub fn
set_broadcast
(&self, on: bool) -> io::Result<()> {
in set_broadcast()
functions
512
self.inner.
set_broadcast
(on)
in set_broadcast()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/
H
A
D
udp.rs
603
/// broadcast_socket.
set_broadcast
(true)?;
609
pub fn
set_broadcast
(&self, on: bool) -> io::Result<()> {
in set_broadcast()
functions
610
self.source.
set_broadcast
(on)
in set_broadcast()
845
/// connected_sock.
set_broadcast
(true)?;
851
pub fn
set_broadcast
(&self, on: bool) -> io::Result<()> {
in set_broadcast()
functions
852
self.source.
set_broadcast
(on)
in set_broadcast()
1652
/// UT test cases for `broadcast()` and `
set_broadcast
()`.
1656
/// 2. Sender calls
set_broadcast
() to set broadcast.
1664
.
set_broadcast
(true)
in ut_set_get_broadcast()
1665
.expect("
set_broadcast
faile
in ut_set_get_broadcast()
[all...]
/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
H
A
D
udp_test.rs
441
/// SDV test cases for `broadcast()` and `
set_broadcast
()`.
445
/// 2. Sender calls
set_broadcast
() to set broadcast.
453
.
set_broadcast
(true)
in sdv_set_get_broadcast()
454
.expect("
set_broadcast
failed");
in sdv_set_get_broadcast()
467
.
set_broadcast
(true)
in sdv_set_get_broadcast()
468
.expect("
set_broadcast
failed");
in sdv_set_get_broadcast()
Completed in 6 milliseconds