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:superBlock
(Results
1 - 2
of
2
) sorted by relevance
/base/startup/init/interfaces/innerkits/fs_manager/erofs_overlay/
H
A
D
erofs_overlay_common.c
60
ext4_super_block
superBlock
;
in CheckIsExt4()
local
61
ssize_t nbytes = read(fd, &
superBlock
, sizeof(
superBlock
));
in CheckIsExt4()
62
if (nbytes != sizeof(
superBlock
)) {
in CheckIsExt4()
68
if (
superBlock
.s_magic == EXT4_SUPER_MAGIC) {
in CheckIsExt4()
70
superBlock
.s_blocks_count_lo, (
superBlock
.s_blocks_count_lo * BLOCK_SIZE_UNIT));
in CheckIsExt4()
91
struct erofs_super_block
superBlock
;
in CheckIsErofs()
local
92
ssize_t nbytes = read(fd, &
superBlock
, sizeof(
superBlock
));
in CheckIsErofs()
[all...]
/base/startup/init/interfaces/innerkits/fs_manager/libfs_hvb/
H
A
D
fs_hvb.c
572
ext4_super_block *
superBlock
= (ext4_super_block *)headerBuf;
in CheckAndGetExt4Size()
local
579
if (
superBlock
->s_magic == EXT4_SUPER_MAGIC) {
in CheckAndGetExt4Size()
580
*imageSize = (uint64_t)
superBlock
->s_blocks_count_lo * BLOCK_SIZE_UNIT;
in CheckAndGetExt4Size()
582
superBlock
->s_blocks_count_lo, *imageSize);
in CheckAndGetExt4Size()
590
struct erofs_super_block *
superBlock
= (struct erofs_super_block *)headerBuf;
in CheckAndGetErofsSize()
local
597
if (
superBlock
->magic == EROFS_SUPER_MAGIC) {
in CheckAndGetErofsSize()
598
*imageSize = (uint64_t)
superBlock
->blocks * BLOCK_SIZE_UINT;
in CheckAndGetErofsSize()
600
superBlock
->blocks, *imageSize);
in CheckAndGetErofsSize()
Completed in 2 milliseconds