Home
last modified time | relevance | path

Searched defs:f (Results 1 – 25 of 117) sorted by relevance

12345

/system/extras/libfec/
Dfec_open.cpp89 static int find_verity_offset(fec_handle *f, uint64_t *offset) in find_verity_offset()
99 static int parse_ecc_header(fec_handle *f, uint64_t offset) in parse_ecc_header()
198 static int parse_ecc(fec_handle *f, uint64_t offset) in parse_ecc()
220 static int get_squashfs_size(fec_handle *f, uint64_t *offset) in get_squashfs_size()
248 static int get_ext4_size(fec_handle *f, uint64_t *offset) in get_ext4_size()
275 static int get_fs_size(fec_handle *f, uint64_t *offset) in get_fs_size()
304 static int load_verity(fec_handle *f) in load_verity()
346 static int load_ecc(fec_handle *f) in load_ecc()
363 static int get_size(fec_handle *f) in get_size()
394 static void reset_handle(fec_handle *f) in reset_handle()
[all …]
Dfec_read.cpp69 static inline bool is_erasure(fec_handle *f, uint64_t offset, in is_erasure()
86 static inline bool is_zero(fec_handle *f, uint64_t offset) in is_zero()
107 static int __ecc_read(fec_handle *f, void *rs, uint8_t *dest, uint64_t offset, in __ecc_read()
208 static int ecc_init(fec_handle *f, rs_unique_ptr& rs, in ecc_init()
234 static ssize_t ecc_read(fec_handle *f, uint8_t *dest, size_t count, in ecc_read()
285 static ssize_t verity_read(fec_handle *f, uint8_t *dest, size_t count, in verity_read()
403 int fec_seek(struct fec_handle *f, int64_t offset, int whence) in fec_seek()
444 ssize_t fec_read(struct fec_handle *f, void *buf, size_t count) in fec_read()
516 ssize_t fec_pread(struct fec_handle *f, void *buf, size_t count, in fec_pread()
Dfec_verity.cpp181 bool hashtree_info::ecc_read_hashes(fec_handle *f, uint64_t hash_offset, in ecc_read_hashes()
204 int hashtree_info::verify_tree(const fec_handle *f, const uint8_t *root) { in verify_tree()
342 static int parse_table(fec_handle *f, uint64_t offset, uint32_t size, bool useecc) in parse_table()
468 static int rewrite_metadata(fec_handle *f, uint64_t offset) in rewrite_metadata()
496 static int validate_header(const fec_handle *f, const verity_header *header, in validate_header()
537 int verity_parse_header(fec_handle *f, uint64_t offset) in verity_parse_header()
627 int fec_verity_set_status(struct fec_handle *f, bool enabled) in fec_verity_set_status()
Davb_utils.cpp24 int parse_vbmeta_from_footer(fec_handle *f, std::vector<uint8_t> *vbmeta) { in parse_vbmeta_from_footer()
65 int parse_avb_image(fec_handle *f, const std::vector<uint8_t> &vbmeta) { in parse_avb_image()
Dfec_process.cpp21 fec_handle *f; member
43 ssize_t process(fec_handle *f, uint8_t *buf, size_t count, uint64_t offset, in process()
/system/vold/bench/
Dbenchgen.py188 fd, f, handle = extract_file(e, e.ret) variable
202 fd, f, handle = extract_file(e, e.args[0]) variable
208 fd, f, handle = extract_file(e, e.args[0]) variable
213 fd, f, handle = extract_file(e, e.args[0]) variable
218 fd, f, handle = extract_file(e, e.args[0]) variable
227 fd, f, handle = extract_file(e, e.args[0]) variable
236 fd, f, handle = extract_file(e, e.args[0]) variable
244 fd, f, handle = extract_file(e, e.args[0]) variable
252 fd, f, handle = extract_file(e, e.args[0]) variable
258 fd, f, handle = extract_file(e, e.args[0]) variable
[all …]
/system/extras/simpleperf/scripts/inferno/
Dsvg_renderer.py66 def create_svg_node(process, callsite, depth, f, total_weight, height, color_scheme, nav): argument
122 def render_svg_nodes(process, flamegraph, depth, f, total_weight, height, color_scheme): argument
146 def render_search_node(f): argument
154 def render_unzoom_node(f): argument
164 def render_info_node(f): argument
176 def render_percent_node(f): argument
185 def render_svg(process, flamegraph, f, color_scheme): argument
/system/bt/test/
Dgen_coverage.py100 def write_root_html_head(f): argument
118 def write_root_html_column(f, covered, count): argument
129 def write_root_html_rows(f, tests): argument
173 def write_root_html_tail(f): argument
/system/media/audio_utils/include/audio_utils/
Dprimitives.h779 static inline int16_t clamp16_from_float(float f) in clamp16_from_float()
824 static inline uint8_t clamp8_from_float(float f) in clamp8_from_float()
885 static inline int32_t clamp24_from_float(float f) in clamp24_from_float()
935 static inline int32_t clampq4_27_from_float(float f) in clampq4_27_from_float()
961 static inline int32_t clamp32_from_float(float f) in clamp32_from_float()
1040 static inline uint32_t u4_28_from_float(float f) in u4_28_from_float()
1064 static inline uint16_t u4_12_from_float(float f) in u4_12_from_float()
/system/extras/tests/workloads/
Dpowerave.py24 f = open(argvrem[2], "r") variable
26 f = sys.stdin variable
/system/libbase/include/android-base/
Dscopeguard.h29 ScopeGuard(F&& f) : f_(std::forward<F>(f)), active_(true) {} in ScopeGuard()
62 ScopeGuard<F> make_scope_guard(F&& f) { in make_scope_guard()
/system/media/audio_utils/tests/
Dsample_tests.cpp27 static constexpr int signum(float f) in signum()
46 const float f = float_from_sample(in); in TEST() local
/system/security/keystore/
Dkeymaster_worker.h81 explicit NonCopyableFunctionTypeEraser(Fn f) : f_(std::move(f)) {} in NonCopyableFunctionTypeEraser()
91 template <typename F> NonCopyableFunction(F f) { in NonCopyableFunction()
/system/core/adb/
Dsysdeps_win32.cpp145 FH f; in _fh_from_int() local
167 static int _fh_to_int(FH f) { in _fh_to_int()
175 FH f = nullptr; in _fh_alloc() local
197 static int _fh_close(FH f) { in _fh_close()
242 static void _fh_file_init(FH f) { in _fh_file_init()
246 static int _fh_file_close(FH f) { in _fh_file_close()
252 static int _fh_file_read(FH f, void* buf, int len) { in _fh_file_read()
265 static int _fh_file_write(FH f, const void* buf, int len) { in _fh_file_write()
278 static int _fh_file_writev(FH f, const adb_iovec* iov, int iovcnt) { in _fh_file_writev()
304 static int64_t _fh_file_lseek(FH f, int64_t pos, int origin) { in _fh_file_lseek()
[all …]
/system/core/libcutils/arch-arm64/
Dandroid_memset.S55 #define ENTRY(f) \ argument
63 #define END(f) \ argument
/system/extras/verity/
Dgenerate_verity_key.c64 FILE *f = NULL; in convert_x509() local
124 FILE *f = NULL; in generate_key() local
/system/iorap/src/common/
Dtype.h142 static constexpr void for_each_impl(Tuple&& t, F&& f) { in for_each_impl()
153 static constexpr void for_each(Tuple&& t, F&& f) { in for_each()
/system/tools/mkbootimg/
Dmkbootimg.py27 def filesize(f): argument
36 def update_sha(sha, f): argument
45 def pad_file(f, padding): argument
/system/core/libutils/include/utils/
DAndroidThreads.h101 inline bool createThread(thread_func_t f, void *a) { in createThread()
/system/libbase/
Dparsedouble_test.cpp46 float f; in TEST() local
/system/timezone/distro/tools/src/main/com/android/timezone/distro/tools/
DCreateTimeZoneDistro.java79 File f = new File(args[0]); in main() local
151 private static Properties loadProperties(File f) throws IOException { in loadProperties()
/system/extras/profcollectd/libprofcollectd/
Dcompress.cpp32 for (const auto& f : inputFiles) { in CompressFiles() local
/system/extras/latencytop/
Dlatencytop.c174 FILE *f; in read_global_stats() local
232 FILE *f; in read_thread_stats() local
302 FILE *f; in set_latencytop() local
315 static struct latency_entry *read_latency_file(FILE *f, struct latency_entry *list) { in read_latency_file()
/system/memory/libmemunreachable/
DHeapWalker.h123 inline void HeapWalker::ForEachPtrInRange(const Range& range, F&& f) { in ForEachPtrInRange()
138 inline void HeapWalker::ForEachAllocation(F&& f) { in ForEachAllocation()
/system/core/liblog/
Dlog_time.cpp49 for (char* f = cp = fmt;; ++cp) { in strptime() local

12345