Home
last modified time | relevance | path

Searched full:root (Results 1 – 25 of 15698) sorted by relevance

12345678910>>...628

/aosp_15_r20/out/target/product/shiba/
Dinstalled-files-recovery.txt1 3113616 /root/system/bin/update_engine_sideload
2 2856576 /root/system/bin/recovery
3 2726120 /root/system/bin/init
4 2212288 /root/system/bin/linker64
5 2143520 /root/system/bin/fastbootd
6 2120416 /root/system/bin/adbd
7 1532072 /root/res/images/wipe_data_menu_header_text.png
8 1424696 /root/system/lib64/libcrypto.so
9 1158152 /root/system/lib64/libc.so
10 1053554 /root/sepolicy
[all …]
Dinstalled-files-vendor-ramdisk-debug.txt1 3113616 /root/system/bin/update_engine_sideload
2 2856576 /root/system/bin/recovery
3 2726120 /root/system/bin/init
6 2212288 /root/system/bin/linker64
7 2143520 /root/system/bin/fastbootd
8 2120416 /root/system/bin/adbd
9 1532072 /root/res/images/wipe_data_menu_header_text.png
10 1424696 /root/system/lib64/libcrypto.so
12 1158152 /root/system/lib64/libc.so
13 1053554 /root/sepolicy
[all …]
Dinstalled-files-recovery.json4 "Name": "/root/system/bin/update_engine_sideload",
9 "Name": "/root/system/bin/recovery",
14 "Name": "/root/system/bin/init",
19 "Name": "/root/system/bin/linker64",
24 "Name": "/root/system/bin/fastbootd",
29 "Name": "/root/system/bin/adbd",
34 "Name": "/root/res/images/wipe_data_menu_header_text.png",
39 "Name": "/root/system/lib64/libcrypto.so",
44 "Name": "/root/system/lib64/libc.so",
49 "Name": "/root/sepolicy",
[all …]
Dinstalled-files-vendor-ramdisk-debug.json4 "Name": "/root/system/bin/update_engine_sideload",
9 "Name": "/root/system/bin/recovery",
14 "Name": "/root/system/bin/init",
29 "Name": "/root/system/bin/linker64",
34 "Name": "/root/system/bin/fastbootd",
39 "Name": "/root/system/bin/adbd",
44 "Name": "/root/res/images/wipe_data_menu_header_text.png",
49 "Name": "/root/system/lib64/libcrypto.so",
59 "Name": "/root/system/lib64/libc.so",
64 "Name": "/root/sepolicy",
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/68/
D683585ca50aef7335b09ab71d0590c038cc8a42f1 root/init.recovery.shiba.rc
2 root/init.recovery.zuma.rc
3 root/res/images/erasing_text.png
4 root/res/images/error_text.png
5 root/res/images/fastbootd.png
6 root/res/images/icon_error.png
7 root/res/images/installing_security_text.png
8 root/res/images/installing_text.png
9 root/res/images/loop00000.png
10 root/res/images/loop00001.png
[all …]
/aosp_15_r20/external/cldr/tools/cldr-rdf/external/
H A DRawLanguageContainment.txt1 root > Austro-Asiatic languages (aav) > Bugan (bbh)
2 root > Austro-Asiatic languages (aav) > Bondo (bfw)
3 root > Austro-Asiatic languages (aav) > Eastern Bru (bru)
4 root > Austro-Asiatic languages (aav) > Western Bru (brv)
5 root > Austro-Asiatic languages (aav) > Hre (hre)
6 root > Austro-Asiatic languages (aav) > Ir (irr)
7 root > Austro-Asiatic languages (aav) > Kuy (kdt)
8 root > Austro-Asiatic languages (aav) > Eastern Katu (ktv)
9 root > Austro-Asiatic languages (aav) > Western Katu (kuf)
10 root > Austro-Asiatic languages (aav) > Mon-Khmer [Other] (mkh) > Arem (aem)
[all …]
/aosp_15_r20/external/libcups/packaging/
H A Dcups.list.in85 %replaces SUNWlpr LP Print Service, (Root)
89 %replaces SUNWpsr LP Print Server, (Root)
91 %replaces SUNWpcr LP Print Client, (Root)
250 f 0555 root sys $SBINDIR/cupsd scheduler/cupsd
252 d 0755 root sys $SERVERBIN -
254 d 0755 root sys $SERVERBIN/apple -
255 f 0555 root sys $SERVERBIN/apple/ipp backend/ipp
256 l 0755 root sys $SERVERBIN/apple/http ipp
257 l 0755 root sys $SERVERBIN/apple/https ipp
258 l 0755 root sys $SERVERBIN/apple/ipps ipp
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Target/GlobalISel/
DCombine.td25 /// Declare a root node. There must be at least one of these in every combine
27 def root : GIDefKind;
72 /// * The names of the root nodes (requires at least one)
101 // Out operands can only be of type "root" or "gi_mo", and they must be defined
154 // Apply action that erases the match root.
161 // - The root cannot have any output operands.
162 // - The root must be a CodeGenInstruction
204 (defs root:$d),
214 (outs root:$dst, $src), (ins),
219 (defs root:$dst),
[all …]
/aosp_15_r20/external/libcxx/test/libcxx/containers/associative/
H A Dtree_remove.pass.cpp39 Node root; in test1() local
46 root.__left_ = &b; in test1()
48 b.__parent_ = &root; in test1()
73 std::__tree_remove(root.__left_, &y); in test1()
74 assert(std::__tree_invariant(root.__left_)); in test1()
76 assert(root.__parent_ == 0); in test1()
77 assert(root.__left_ == &d); in test1()
78 assert(root.__right_ == 0); in test1()
79 assert(root.__is_black_ == false); in test1()
81 assert(d.__parent_ == &root); in test1()
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/containers/associative/
H A Dtree_remove.pass.cpp40 Node root; in test1() local
47 root.__left_ = &b; in test1()
49 b.__parent_ = &root; in test1()
74 std::__tree_remove(root.__left_, &y); in test1()
75 assert(std::__tree_invariant(root.__left_)); in test1()
77 assert(root.__parent_ == 0); in test1()
78 assert(root.__left_ == &d); in test1()
79 assert(root.__right_ == 0); in test1()
80 assert(root.__is_black_ == false); in test1()
82 assert(d.__parent_ == &root); in test1()
[all …]
/aosp_15_r20/tools/asuite/aidegen/test_data/jdk_table_xml/
H A Djdk_nonexistent.xml11 <homePath value="/path/to/android/root/prebuilts/jdk/jdk21/linux-x86" />
14 <root type="composite">
15 … <root url="jar://$APPLICATION_HOME_DIR$/plugins/java/lib/jdkAnnotations.jar!/" type="simple" />
16 </root>
19 <root type="composite">
20 … <root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.base" type="simple" />
21 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.compiler" type="simple"…
22 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.datatransfer" type="sim…
23 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.desktop" type="simple" …
24 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.instrument" type="simpl…
[all …]
H A Djdk21.xml7 <homePath value="/path/to/android/root/prebuilts/jdk/jdk21/linux-x86" />
10 <root type="composite">
11 … <root url="jar://$APPLICATION_HOME_DIR$/plugins/java/lib/jdkAnnotations.jar!/" type="simple" />
12 </root>
15 <root type="composite">
16 … <root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.base" type="simple" />
17 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.compiler" type="simple"…
18 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.datatransfer" type="sim…
19 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.desktop" type="simple" …
20 …<root url="jrt:///path/to/android/root/prebuilts/jdk/jdk21/linux-x86!/java.instrument" type="simpl…
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td52 /// * The names of the root nodes (requires at least one)
71 /// The operator at the root of a GICombineRule.Defs dag.
78 /// Declare a root node. There must be at least one of these in every combine
80 /// TODO: The plan is to elide `root` definitions and determine it from the DAG
83 def root : GIDefKind;
95 /// The operator at the root of a GICombineRule.Match dag.
113 /// The operator at the root of a GICombineRule.Apply dag.
129 (defs root:$d),
139 (defs root:$mi),
147 (defs root:$root, extending_load_matchdata:$matchinfo),
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Target/GlobalISel/
DCombine.td25 /// Declare a root node. There must be at least one of these in every combine
27 def root : GIDefKind;
72 /// * The names of the root nodes (requires at least one)
101 // Out operands can only be of type "root" or "gi_mo", and they must be defined
154 // Apply action that erases the match root.
161 // - The root cannot have any output operands.
162 // - The root must be a CodeGenInstruction
201 (defs root:$d),
211 (outs root:$dst, $src), (ins),
216 (defs root:$dst),
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Target/GlobalISel/
DCombine.td25 /// Declare a root node. There must be at least one of these in every combine
27 def root : GIDefKind;
72 /// * The names of the root nodes (requires at least one)
101 // Out operands can only be of type "root" or "gi_mo", and they must be defined
154 // Apply action that erases the match root.
161 // - The root cannot have any output operands.
162 // - The root must be a CodeGenInstruction
201 (defs root:$d),
211 (outs root:$dst, $src), (ins),
216 (defs root:$dst),
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/Settings/Settings-core/android_common/kapt/
Dbuild.xml3 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/art.modul…
4 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/conscryp…
5 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/icu/andr…
6 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/core-lamb…
7 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/packages/apps/Set…
8 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
9 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
10 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/p…
11 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
12 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Target/GlobalISel/
DCombine.td25 /// Declare a root node. There must be at least one of these in every combine
27 def root : GIDefKind;
72 /// * The names of the root nodes (requires at least one)
101 // Out operands can only be of type "root" or "gi_mo", and they must be defined
154 // Apply action that erases the match root.
161 // - The root cannot have any output operands.
162 // - The root must be a CodeGenInstruction
201 (defs root:$d),
211 (outs root:$dst, $src), (ins),
216 (defs root:$dst),
[all …]
/aosp_15_r20/external/perfetto/test/trace_processor/diff_tests/parser/android/
H A Dandroid_bugreport_dumpstate_test.out274 "HARDWARE HALS (/system/xbin/su root lshal --all --types=all)","[NULL]",359
291 "LIBRANK (/system/xbin/su root librank)","[NULL]",42470
292 "LIST OF OPEN FILES (/system/xbin/su root lsof)","[NULL]",42793
297 "MODULES INFO (/system/xbin/su root sh -c cat /proc/modules | cut -d' ' -f1 | while read MOD ; …
306 "PROCRANK (/system/xbin/su root procrank)","[NULL]",173
318 "SHOW MAP 1 (/system/bin/init) (/system/xbin/su root showmap -q 1)","[NULL]",344
319 "SHOW MAP 10 ([rcuop/0]) (/system/xbin/su root showmap -q 10)","[NULL]",8
320 "SHOW MAP 100 ([irq/125-tsens-u]) (/system/xbin/su root showmap -q 100)","[NULL]",8
321 "SHOW MAP 101 ([irq/126-tsens-c]) (/system/xbin/su root showmap -q 101)","[NULL]",8
322 "SHOW MAP 1013 (/system/bin/hw/[email protected]) (/system/xbin/su root showmap -q…
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/Settings/Settings-core/android_common/
Dkotlinc-build.xml3 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/art.modul…
4 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/conscryp…
5 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/icu/andr…
6 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/core-lamb…
7 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/packages/apps/Set…
8 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
9 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
10 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/p…
11 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
12 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/SystemUI-core/android_common/kapt/
Dbuild.xml3 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/art.modul…
4 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/conscryp…
5 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/icu/andr…
6 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/core-lamb…
7 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/p…
8 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/p…
9 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
10 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
11 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
12 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/cur…
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/Launcher3/Launcher3QuickStepLib/android_common/
Dkotlinc-build.xml3 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/art.modul…
4 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/conscryp…
5 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/icu/andr…
6 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/core-lamb…
7 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/libphone…
8 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/tagsoup/…
9 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/rappor/r…
10 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/f…
11 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/f…
12 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/packages/modules/…
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/Launcher3/Launcher3QuickStepLib/android_common/kapt/
Dbuild.xml3 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/art.modul…
4 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/conscryp…
5 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/icu/andr…
6 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/libcore/core-lamb…
7 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/libphone…
8 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/tagsoup/…
9 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/external/rappor/r…
10 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/f…
11 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/frameworks/base/f…
12 …<classpath path="/root/opengrok-1.13.29/src/aosp_15_r20/out/soong/.intermediates/packages/modules/…
[all …]
/aosp_15_r20/tools/asuite/aidegen/
H A Dtemplates.py67 <root url="jar://{JAR}!/" />
252 <root type="composite">
253 … <root url="jar://$APPLICATION_HOME_DIR$/plugins/java/lib/jdkAnnotations.jar!/" type="simple" />
254 </root>
257 <root type="composite">
258 <root url="jrt://{JDKpath}!/java.base" type="simple" />
259 <root url="jrt://{JDKpath}!/java.compiler" type="simple" />
260 <root url="jrt://{JDKpath}!/java.datatransfer" type="simple" />
261 <root url="jrt://{JDKpath}!/java.desktop" type="simple" />
262 <root url="jrt://{JDKpath}!/java.instrument" type="simple" />
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/compiler/jit/
H A Ddeadness_analysis_test.cc64 ops::Switch CreateSwitch(const Scope& root, const string& prefix) { in CreateSwitch() argument
65 Output value = ops::Placeholder(root.WithOpName(prefix + "/value"), DT_FLOAT); in CreateSwitch()
67 ops::Placeholder(root.WithOpName(prefix + "/pred"), DT_BOOL); in CreateSwitch()
68 return ops::Switch(root.WithOpName(prefix + "/switch"), value, predicate); in CreateSwitch()
129 InductionVarInfo CreateInductionVariable(const Scope& root, in CreateInductionVariable() argument
134 root.WithOpName(prefix + "/enter"), initial_value, frame_name); in CreateInductionVariable()
136 ops::Merge iv(root.WithOpName(prefix + "/iv"), in CreateInductionVariable()
138 Output increment_by = ops::Const(root.WithOpName(prefix + "/incr"), 1); in CreateInductionVariable()
139 Output final_value = ops::Const(root.WithOpName(prefix + "/final"), 10); in CreateInductionVariable()
141 ops::Less(root.WithOpName(prefix + "/cond"), iv.output, final_value); in CreateInductionVariable()
[all …]
/aosp_15_r20/external/trusty/lk/lib/binary_search_tree/hosttest/
Dbinary_search_tree_test.cpp47 static struct bst_node *bst_test_search(struct bst_root *root, in bst_test_search() argument
49 return bst_search(root, node, bst_test_compare); in bst_test_search()
72 std::ostream& operator<<(std::ostream& os, const struct bst_root* root) { in operator <<() argument
73 return os << "Root (" << (void*)root << ")\n"; in operator <<()
78 * @node: Root of a subtree.
96 * @root: Tree.
98 * Return: Depth of @root.
100 static size_t bst_depth(struct bst_root *root) { in bst_depth() argument
101 return bst_subtree_depth(root->root); in bst_depth()
111 static void bst_test_check_node(struct bst_root *root, struct bst_node *node) { in bst_test_check_node() argument
[all …]

12345678910>>...628