Home
last modified time | relevance | path

Searched refs:func (Results 1 – 16 of 16) sorted by relevance

/development/python-packages/fastboot/
Ddevice.py135 func = (_subprocess_check_output if quiet else subprocess.check_call)
143 func(command, stderr=subprocess.STDOUT)
154 func = (_subprocess_check_output if quiet else subprocess.check_call)
162 func(command, stderr=subprocess.STDOUT)
/development/vndk/tools/header-checker/tests/reference_dumps/arm64/
Dlibavailability_35.so.lsdump24 "name" : "func"
83 "function_name" : "func",
84 "linker_set_key" : "func",
Dlibavailability.so.lsdump24 "name" : "func"
113 "function_name" : "func",
114 "linker_set_key" : "func",
Dlibmerge_multi_definitions.so.lsdump28 "name" : "func"
43 "function_name" : "func",
44 "linker_set_key" : "func",
Dlibdiff_multi_definitions.so.lsdump28 "name" : "func"
43 "function_name" : "func",
44 "linker_set_key" : "func",
/development/vndk/tools/header-checker/src/diff/
Dabi_diff_wrappers.h34 F func) { in IgnoreSymbol() argument
35 return ignored_symbols.find(func(element)) != ignored_symbols.end(); in IgnoreSymbol()
/development/scripts/
Dacov-llvm.py220 clean_device.set_defaults(func=do_clean_device)
236 flush.set_defaults(func=do_flush)
256 report.set_defaults(func=do_report)
265 args.func(args)
/development/vndk/tools/header-checker/tests/integration/merge_multi_definitions/
Dmap.txt3 func;
/development/vndk/tools/header-checker/tests/integration/availability/
Dmap.txt3 func;
/development/vndk/tools/header-checker/tests/integration/merge_multi_definitions/include/
Ddef1.h12 void func(Struct *, Opaque *, DefinedInOneHeader *);
Ddef2.h12 void func(Opaque *, Struct *, DefinedInOneHeader *);
Dlink_to_def2.h12 void func(Opaque *, Struct *, DefinedInOneHeader *);
/development/vndk/tools/header-checker/src/dumper/
Dfixed_argv.h126 FixedArgvRegistry(Function *func) : func_(func), next_(head_) { in FixedArgvRegistry() argument
/development/vndk/tools/header-checker/tests/integration/availability/include/
Dbase.h31 int func(Struct*, IgnoredStruct*) __INTRODUCED_IN(35);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixTrackingGL.java85 public void glAlphaFunc(int func, float ref) { in glAlphaFunc() argument
86 mgl.glAlphaFunc(func, ref); in glAlphaFunc()
89 public void glAlphaFuncx(int func, int ref) { in glAlphaFuncx() argument
90 mgl.glAlphaFuncx(func, ref); in glAlphaFuncx()
184 public void glDepthFunc(int func) { in glDepthFunc() argument
185 mgl.glDepthFunc(func); in glDepthFunc()
581 public void glStencilFunc(int func, int ref, int mask) { in glStencilFunc() argument
582 mgl.glStencilFunc(func, ref, mask); in glStencilFunc()
/development/tools/repo_pull/
Drepo_review.py170 def _do_task(change, func, *args, **kwargs): argument
173 res_code, res_body, res_json = func(*args)