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:gd_ptr
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ltp/testcases/kernel/device-drivers/include/
H
A
D
includeTest.c
84
static struct gendisk *
gd_ptr
;
variable
154
gd_ptr
= kmalloc(sizeof(struct gendisk *), GFP_KERNEL);
in test_init_module()
155
if (!
gd_ptr
) {
in test_init_module()
161
gd_ptr
= alloc_disk(1);
in test_init_module()
162
printk(KERN_ALERT "
gd_ptr
after alloc = %p \n",
gd_ptr
);
in test_init_module()
163
gd_ptr
->major = INCLUDEMAJOR;
in test_init_module()
164
gd_ptr
->first_minor = 0;
in test_init_module()
165
gd_ptr
->fops = &bdops;
in test_init_module()
166
//
gd_ptr
in test_init_module()
[all...]
/third_party/ltp/testcases/kernel/fs/scsi/ltpfs/
H
A
D
LtpfsCmds.c
52
static struct gendisk *
gd_ptr
;
variable
197
gd_ptr
= kmalloc(sizeof(struct gendisk *), GFP_KERNEL);
in init_module()
199
if (!
gd_ptr
) {
in init_module()
204
gd_ptr
= alloc_disk(1);
in init_module()
206
printk(KERN_ALERT "
gd_ptr
after alloc = %p \n",
gd_ptr
);
in init_module()
208
gd_ptr
->major = ltp_fs_major;
in init_module()
209
gd_ptr
->first_minor = 0;
in init_module()
210
gd_ptr
->fops = &blkops;
in init_module()
211
gd_ptr
in init_module()
[all...]
/third_party/ltp/testcases/kernel/device-drivers/nls/
H
A
D
nlsTest.c
84
static struct gendisk *
gd_ptr
;
variable
169
gd_ptr
= alloc_disk(1);
in test_init_module()
170
if (!
gd_ptr
) {
in test_init_module()
176
printk(KERN_ALERT "
gd_ptr
after alloc=%p\n",
gd_ptr
);
in test_init_module()
180
del_gendisk(
gd_ptr
);
in test_init_module()
186
gd_ptr
->major = NLSMAJOR;
in test_init_module()
187
gd_ptr
->first_minor = 0;
in test_init_module()
188
gd_ptr
->fops = &bdops;
in test_init_module()
189
gd_ptr
in test_init_module()
[all...]
/third_party/ltp/testcases/kernel/device-drivers/block/block_dev_kernel/
H
A
D
test_genhd.c
27
struct gendisk *
gd_ptr
;
in tc20()
local
29
gd_ptr
= alloc_disk(1);
in tc20()
30
if (!
gd_ptr
) {
in tc20()
33
printk(KERN_DEBUG "
gd_ptr
after alloc=%p\n",
gd_ptr
);
in tc20()
35
del_gendisk(
gd_ptr
);
in tc20()
Completed in 2 milliseconds