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:IFF_DRV_RUNNING
(Results
1 - 7
of
7
) sorted by relevance
/third_party/FreeBSD/sys/dev/usb/net/
H
A
D
usb_ethernet.c
357
drv_sc->state &= ~
IFF_DRV_RUNNING
;
in uether_ifdetach()
428
if ((drv_sc->state &
IFF_DRV_RUNNING
) == 0)
in ue_start_task()
479
if ((drv_sc->state &
IFF_DRV_RUNNING
) == 0) {
in ue_start()
497
if ((drv_sc->state &
IFF_DRV_RUNNING
) == 0)
in ue_watchdog()
516
if ((drv_sc->state &
IFF_DRV_RUNNING
) == 0)
in ue_tick_task()
H
A
D
if_axe.c
661
if (drv_sc->state &
IFF_DRV_RUNNING
) {
in axe_miibus_statchg()
1013
if ((drv_sc->state &
IFF_DRV_RUNNING
) != 0)
in axe_init()
1087
drv_sc->state |=
IFF_DRV_RUNNING
;
in axe_init()
1136
drv_sc->state &= ~(
IFF_DRV_RUNNING
| IFF_DRV_OACTIVE);
in axe_stop()
H
A
D
if_axge.c
671
if ((drv_sc->state &
IFF_DRV_RUNNING
) != 0)
in axge_init()
708
drv_sc->state |=
IFF_DRV_RUNNING
;
in axge_init()
719
drv_sc->state &= ~(
IFF_DRV_RUNNING
| IFF_DRV_OACTIVE);
in axge_stop()
H
A
D
usb_ethernet.h
34
#define
IFF_DRV_RUNNING
0x40 /* (d) resources allocated */
macro
H
A
D
if_urndis.c
350
drv_sc->state |=
IFF_DRV_RUNNING
;
in urndis_init()
368
drv_sc->state &= ~
IFF_DRV_RUNNING
;
in urndis_stop()
H
A
D
if_cdce.c
782
drv_sc->state |=
IFF_DRV_RUNNING
;
in cdce_init()
812
drv_sc->state &= ~
IFF_DRV_RUNNING
;
in cdce_stop()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
H
A
D
mod.rs
2458
note = "
IFF_DRV_RUNNING
is deprecated. Use the portable IFF_RUNNING instead"
2461
pub const
IFF_DRV_RUNNING
: ::c_int = 0x40;
consts
Completed in 17 milliseconds