Home
last modified time | relevance | path

Searched refs:bootstrap (Results 1 – 25 of 140) sorted by relevance

123456

/aosp12/build/blueprint/
H A DBlueprints106 name: "blueprint-bootstrap",
111 "blueprint-bootstrap-bpdoc",
115 "bootstrap/bootstrap.go",
116 "bootstrap/cleanup.go",
117 "bootstrap/command.go",
118 "bootstrap/config.go",
119 "bootstrap/doc.go",
120 "bootstrap/glob.go",
121 "bootstrap/writedocs.go",
133 "bootstrap/bpdoc/bpdoc.go",
[all …]
H A Dbootstrap.bash124 echo "BLUEPRINT_BOOTSTRAP_VERSION=2" > $BUILDDIR/.blueprint.bootstrap
125 echo "SRCDIR=\"${SRCDIR}\"" >> $BUILDDIR/.blueprint.bootstrap
126 echo "BLUEPRINTDIR=\"${BLUEPRINTDIR}\"" >> $BUILDDIR/.blueprint.bootstrap
127 echo "NINJA_BUILDDIR=\"${NINJA_BUILDDIR}\"" >> $BUILDDIR/.blueprint.bootstrap
128 echo "GOROOT=\"${GOROOT}\"" >> $BUILDDIR/.blueprint.bootstrap
129 echo "TOPNAME=\"${TOPNAME}\"" >> $BUILDDIR/.blueprint.bootstrap
H A Dblueprint_impl.bash29 BUILDDIR="${BUILDDIR}/.minibootstrap" build_go minibp github.com/google/blueprint/bootstrap/minibp
31 BUILDDIR="${BUILDDIR}/.minibootstrap" build_go bpglob github.com/google/blueprint/bootstrap/bpglob
/aosp12/build/soong/cmd/soong_build/
H A Dmain.go108 var firstArgs, secondArgs bootstrap.Args
110 firstArgs = bootstrap.CmdlineArgs
111 configuration.SetStopBefore(bootstrap.StopBeforeWriteNinja)
126 secondArgs = bootstrap.CmdlineArgs
148 soongDocsArgs := bootstrap.CmdlineArgs
183 blueprintArgs := bootstrap.CmdlineArgs
192 return bootstrap.CmdlineArgs.OutFile
212 return bootstrap.CmdlineArgs.OutFile // TODO: This is a lie
221 return bootstrap.CmdlineArgs.OutFile
392 blueprintArgs := bootstrap.CmdlineArgs
[all …]
/aosp12/build/blueprint/tests/
H A Dtest_tree_tests.sh30 ${SRCDIR}/blueprint/bootstrap.bash $@
35 OLDTIME_BOOTSTRAP=$(mtime .bootstrap/build.ninja)
46 if [ ${OLDTIME_BOOTSTRAP} != $(mtime .bootstrap/build.ninja) ]; then
61 if [ ${OLDTIME_BOOTSTRAP} != $(mtime .bootstrap/build.ninja) ]; then
76 if [ ${OLDTIME_BOOTSTRAP} = $(mtime .bootstrap/build.ninja) ]; then
83 OLDTIME_BOOTSTRAP=$(mtime .bootstrap/build.ninja)
93 if [ ${OLDTIME_BOOTSTRAP} = $(mtime .bootstrap/build.ninja) ]; then
100 OLDTIME_BOOTSTRAP=$(mtime .bootstrap/build.ninja)
111 if [ ${OLDTIME_BOOTSTRAP} != $(mtime .bootstrap/build.ninja) ]; then
H A Dtest.sh9 ../tests/bootstrap.bash
12 if [[ -d .bootstrap/blueprint/test ]]; then
18 ../tests/bootstrap.bash -t
21 if [[ ! -d .bootstrap/blueprint/test ]]; then
27 ../tests/bootstrap.bash
30 if [[ -d .bootstrap/blueprint/test ]]; then
H A Dbootstrap.bash7 ../bootstrap.bash "$@"
/aosp12/frameworks/libs/native_bridge_support/
H A Dnative_bridge_support.mk50 libandroidicu.bootstrap \
54 libdl.bootstrap \
55 libdl_android.bootstrap \
56 libicu.bootstrap \
58 libm.bootstrap \
/aosp12/system/linkerconfig/testdata/
H A Dprepare_root.sh19 bootstrap=
30 --bootstrap)
31 bootstrap=yes
57 if [ ! -z $bootstrap ] && [ ! -z $all ]; then
62 if [ ! -z $bootstrap ]; then
/aosp12/packages/modules/Virtualization/microdroid/
H A Dinit.rc16 # TODO(b/185991357) eliminate bootstrap mount namespace
18 mkdir /linkerconfig/bootstrap 0755
22 exec -- /system/bin/bootstrap/linkerconfig --target /linkerconfig/bootstrap
23 chmod 644 /linkerconfig/bootstrap/ld.config.txt
24 copy /linkerconfig/bootstrap/ld.config.txt /linkerconfig/default/ld.config.txt
27 # Mount bootstrap linker configuration as current
28 mount none /linkerconfig/bootstrap /linkerconfig bind rec
32 # Run apexd-bootstrap so that APEXes that provide critical libraries
35 exec_start apexd-bootstrap
37 # Generate linker config based on apex mounted in bootstrap namespace
/aosp12/system/apex/apexd/
H A Dapexd.rc10 service apexd-bootstrap /system/bin/apexd --bootstrap
15 reboot_on_failure reboot,bootloader,bootstrap-apexd-failed
/aosp12/build/soong/ui/build/
H A Dsoong.go106 var args bootstrap.Args
129 commonArgs := bootstrap.PrimaryBuilderExtraFlags(args, bootstrapGlobFile, mainNinjaFile)
142 mainSoongBuildInvocation := bootstrap.PrimaryBuilderInvocation{
154 bp2buildInvocation := bootstrap.PrimaryBuilderInvocation{
159 args.PrimaryBuilderInvocations = []bootstrap.PrimaryBuilderInvocation{
164 args.PrimaryBuilderInvocations = []bootstrap.PrimaryBuilderInvocation{mainSoongBuildInvocation}
176 bootstrapDeps := bootstrap.RunBlueprint(args, blueprintCtx, blueprintConfig)
/aosp12/bionic/build/
H A Drun-on-host.sh50 for i in ${TARGET_OUT}/bin/bootstrap/* ${TARGET_OUT}/bin/*; do
54 for i in ${TARGET_OUT}/lib/bootstrap/* ${TARGET_OUT}/lib/*; do
57 for i in ${TARGET_OUT}/lib64/bootstrap/* ${TARGET_OUT}/lib64/*; do
/aosp12/build/blueprint/bootstrap/minibp/
H A Dmain.go35 return bootstrap.CmdlineArgs.BuildDir
55 bootstrap.Main(ctx, config, !runAsPrimaryBuilder)
/aosp12/build/make/target/product/
H A Dbase_system.mk135 libc.bootstrap \
138 libdl.bootstrap \
139 libdl_android.bootstrap \
161 libm.bootstrap \
291 libclang_rt.hwasan-aarch64-android.bootstrap
/aosp12/build/soong/cmd/javac_wrapper/
H A Djavac_wrapper_test.go59 warning: [options] bootstrap class path not set in conjunction with -source 1.7
80 warning: [options] bootstrap class path not set in conjunction with -source 1.9\n
88 warning: [options] bootstrap class path not set in conjunction with -source 1.9\n
/aosp12/libnativehelper/tests/
H A DAndroid.bp85 // `bootstrap:true` to bypass the stub library. This test won't link when
89 // `bootstrap:true` - `test_for` ought to work but fails because the test is
101 bootstrap: true,
/aosp12/build/blueprint/bootstrap/
H A Dbuild.ninja1 # Included by .minibootstrap/build.ninja, which is written by bootstrap.bash
19 bootstrapNinja = ${bootstrapBuildDir}/.bootstrap/build.ninja
H A Ddoc.go150 package bootstrap package
/aosp12/build/soong/tests/
H A Dbootstrap_test.sh18 local bootstrap_mtime1=$(stat -c "%y" out/soong/.bootstrap/build.ninja)
21 local bootstrap_mtime2=$(stat -c "%y" out/soong/.bootstrap/build.ninja)
37 local mtime1=$(stat -c "%y" out/soong/.bootstrap/build.ninja)
39 sed -i 's/pluginGenSrcCmd/pluginGenSrcCmd2/g' build/blueprint/bootstrap/bootstrap.go
42 local mtime2=$(stat -c "%y" out/soong/.bootstrap/build.ninja)
490 [[ -e out/soong/.bootstrap/bp2build_workspace_marker ]] || fail "bp2build marker file not created"
/aosp12/hardware/interfaces/wifi/supplicant/1.4/
H A DISupplicantStaIface.hal88 * Generates DPP bootstrap information: Bootstrap ID, DPP URI and listen
98 * @return status of operation and bootstrap info.
126 * Stop DPP Responder operation - Remove the bootstrap code and stop listening.
H A Dtypes.hal117 * DPP bootstrap info generated for responder mode operation
121 * Generated bootstrap identifier
/aosp12/art/test/714-invoke-custom-lambda-metafactory/
H A Dexpected-stderr.txt1 Exception in thread "main" java.lang.BootstrapMethodError: Exception from call site #0 bootstrap me…
/aosp12/build/make/core/clang/
H A DTARGET_arm64.mk10 ADDRESS_SANITIZER_LINKER_FILE := /system/bin/bootstrap/linker_asan64
H A DTARGET_x86_64.mk10 ADDRESS_SANITIZER_LINKER_FILE := /system/bin/bootstrap/linker_asan64

123456