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:n_vclocks
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/drivers/ptp/
H
A
D
ptp_sysfs.c
194
size = snprintf(page, PAGE_SIZE - 1, "%u\n", ptp->
n_vclocks
);
in n_vclocks_show()
222
if (num > ptp->
n_vclocks
) {
in n_vclocks_store()
223
for (i = 0; i < num - ptp->
n_vclocks
; i++) {
in n_vclocks_store()
228
*(ptp->vclock_index + ptp->
n_vclocks
+ i) =
in n_vclocks_store()
237
if (num < ptp->
n_vclocks
) {
in n_vclocks_store()
238
i = ptp->
n_vclocks
- num;
in n_vclocks_store()
242
for (i = 1; i <= ptp->
n_vclocks
- num; i++)
in n_vclocks_store()
243
*(ptp->vclock_index + ptp->
n_vclocks
- i) = -1;
in n_vclocks_store()
254
ptp->
n_vclocks
= num;
in n_vclocks_store()
262
static DEVICE_ATTR_RW(
n_vclocks
);
[all...]
H
A
D
ptp_private.h
51
unsigned int
n_vclocks
;
member
53
struct mutex n_vclocks_mux; /* protect concurrent
n_vclocks
access */
97
if (!ptp->is_virtual_clock && ptp->
n_vclocks
)
in ptp_vclock_in_use()
H
A
D
ptp_vclock.c
255
*vclock_index = kzalloc(sizeof(int) * ptp->
n_vclocks
, GFP_KERNEL);
in ptp_get_vclocks_index()
259
memcpy(*vclock_index, ptp->vclock_index, sizeof(int) * ptp->
n_vclocks
);
in ptp_get_vclocks_index()
260
num = ptp->
n_vclocks
;
in ptp_get_vclocks_index()
Completed in 3 milliseconds