OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:prebuilt_path
(Results
1 - 8
of
8
) sorted by null
/ndk/build/
ndk-build.cmd
3
set
PREBUILT_PATH
=%NDK_ROOT%\prebuilt\windows-x86_64
4
if exist %
PREBUILT_PATH
% goto FOUND
5
set
PREBUILT_PATH
=%NDK_ROOT%\prebuilt\windows
7
"%
PREBUILT_PATH
%\bin\make.exe" -f "%NDK_ROOT%\build\core\build-local.mk" SHELL=cmd %*
/ndk/build/tools/
build-gcc.py
39
prebuilt_path
= os.path.join(build_support.android_path(),
41
if not os.path.isdir(
prebuilt_path
):
42
sys.exit('Could not find prebuilt GCC at {}'.format(
prebuilt_path
))
43
return
prebuilt_path
48
prebuilt_path
= get_gcc_prebuilt_path(host_tag)
54
os.chdir(
prebuilt_path
)
build-llvm.py
30
prebuilt_path
= os.path.join(build_support.android_path(),
32
if not os.path.isdir(
prebuilt_path
):
33
sys.exit('Could not find prebuilt LLVM at {}'.format(
prebuilt_path
))
34
return
prebuilt_path
50
prebuilt_path
= get_llvm_prebuilt_path(os_name + '-x86')
65
os.chdir(
prebuilt_path
)
/build/tools/releasetools/
add_img_to_target_files
53
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "system.img")
54
if os.path.exists(
prebuilt_path
):
85
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "vendor.img")
86
if os.path.exists(
prebuilt_path
):
165
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "userdata.img")
166
if os.path.exists(
prebuilt_path
):
217
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "cache.img")
218
if os.path.exists(
prebuilt_path
):
283
prebuilt_path
= os.path.join(OPTIONS.input_tmp, "IMAGES", "boot.img")
285
if os.path.exists(
prebuilt_path
)
[
all
...]
add_img_to_target_files.py
53
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "system.img")
54
if os.path.exists(
prebuilt_path
):
85
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "vendor.img")
86
if os.path.exists(
prebuilt_path
):
165
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "userdata.img")
166
if os.path.exists(
prebuilt_path
):
217
prebuilt_path
= os.path.join(OPTIONS.input_tmp, prefix, "cache.img")
218
if os.path.exists(
prebuilt_path
):
283
prebuilt_path
= os.path.join(OPTIONS.input_tmp, "IMAGES", "boot.img")
285
if os.path.exists(
prebuilt_path
)
[
all
...]
common.py
532
prebuilt_path
= os.path.join(unpack_dir, "BOOTABLE_IMAGES", prebuilt_name)
533
if os.path.exists(
prebuilt_path
):
535
return File.FromLocalFile(name,
prebuilt_path
)
537
prebuilt_path
= os.path.join(unpack_dir, "IMAGES", prebuilt_name)
538
if os.path.exists(
prebuilt_path
):
540
return File.FromLocalFile(name,
prebuilt_path
)
[
all
...]
/ndk/build/core/
prebuilt-library.mk
39
prebuilt_path
:= $(call local-prebuilt-path,$(LOCAL_SRC_FILES))
macro
40
prebuilt := $(strip $(wildcard $(
prebuilt_path
)))
44
$(call __ndk_info,Check that $(
prebuilt_path
) exists, or that its path is correct)
/ndk/tests/
ndk.py
48
prebuilt_path
= os.path.join(os.environ['NDK'], 'prebuilt', host_tag)
49
return os.path.join(
prebuilt_path
, 'bin', tool) + ext
Completed in 239 milliseconds