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:UNIX_HASH_SIZE
(Results
1 - 5
of
5
) sorted by relevance
/kernel/linux/linux-5.10/include/net/
H
A
D
af_unix.h
19
#define
UNIX_HASH_SIZE
256
macro
24
extern struct hlist_head unix_socket_table[2 *
UNIX_HASH_SIZE
];
/kernel/linux/linux-6.6/include/net/
H
A
D
af_unix.h
21
#define
UNIX_HASH_SIZE
(256 * 2)
macro
/kernel/linux/linux-6.6/net/unix/
H
A
D
diag.c
210
for (slot = s_slot; slot <
UNIX_HASH_SIZE
; s_num = 0, slot++) {
in unix_diag_dump()
244
for (i = 0; i <
UNIX_HASH_SIZE
; i++) {
in unix_lookup_by_ino()
H
A
D
af_unix.c
123
static struct hlist_head bsd_socket_buckets[
UNIX_HASH_SIZE
/ 2];
124
static spinlock_t bsd_socket_locks[
UNIX_HASH_SIZE
/ 2];
3200
while (bucket <
UNIX_HASH_SIZE
) {
in unix_get_first()
3530
net->unx.table.locks = kvmalloc_array(
UNIX_HASH_SIZE
,
in unix_net_init()
3535
net->unx.table.buckets = kvmalloc_array(
UNIX_HASH_SIZE
,
in unix_net_init()
3541
for (i = 0; i <
UNIX_HASH_SIZE
; i++) {
in unix_net_init()
3651
for (i = 0; i <
UNIX_HASH_SIZE
/ 2; i++) {
in af_unix_init()
/kernel/linux/linux-5.10/net/unix/
H
A
D
af_unix.c
119
struct hlist_head unix_socket_table[2 *
UNIX_HASH_SIZE
];
132
hash %=
UNIX_HASH_SIZE
;
in unix_sockets_unbound()
133
return &unix_socket_table[
UNIX_HASH_SIZE
+ hash];
in unix_sockets_unbound()
136
#define UNIX_ABSTRACT(sk) (unix_sk(sk)->addr->hash <
UNIX_HASH_SIZE
)
177
return hash&(
UNIX_HASH_SIZE
-1);
in unix_hash_fold()
319
&unix_socket_table[i->i_ino & (
UNIX_HASH_SIZE
- 1)]) {
in unix_find_socket_byinode()
1090
addr->hash =
UNIX_HASH_SIZE
;
in unix_bind()
1091
hash = d_backing_inode(path.dentry)->i_ino & (
UNIX_HASH_SIZE
- 1);
in unix_bind()
Completed in 9 milliseconds