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:ifq
(Results
1 - 3
of
3
) sorted by relevance
/third_party/FreeBSD/sys/dev/usb/
H
A
D
usb_mbuf.h
47
#define USB_IF_ENQUEUE(
ifq
, m) do { \
49
if ((
ifq
)->ifq_tail == NULL) \
50
(
ifq
)->ifq_head = (m); \
52
(
ifq
)->ifq_tail->usb_nextpkt = (m); \
53
(
ifq
)->ifq_tail = (m); \
54
(
ifq
)->ifq_len++; \
57
#define USB_IF_DEQUEUE(
ifq
, m) do { \
58
(m) = (
ifq
)->ifq_head; \
60
if (((
ifq
)->ifq_head = (m)->usb_nextpkt) == NULL) { \
61
(
ifq
)
[all...]
H
A
D
usb_mbuf.c
38
usb_alloc_mbufs(struct malloc_type *type, struct usb_ifqueue *
ifq
,
in usb_alloc_mbufs()
argument
68
USB_IF_ENQUEUE(
ifq
, m_ptr);
in usb_alloc_mbufs()
/third_party/FreeBSD/sys/dev/usb/net/
H
A
D
usb_ethernet.h
55
#define IF_ENQUEUE(
ifq
, m) do { \
56
if ((
ifq
)->ifq_tail == NULL) \
57
(
ifq
)->ifq_head = m; \
59
(
ifq
)->ifq_tail->next = m; \
60
(
ifq
)->ifq_tail = m; \
61
(
ifq
)->ifq_len++; \
64
#define IF_DEQUEUE(
ifq
, m) do { \
65
(m) = (
ifq
)->ifq_head; \
67
if (((
ifq
)->ifq_head = (m)->next) == NULL) \
68
(
ifq
)
[all...]
Completed in 1 milliseconds