Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:binPath
(Results
1 - 3
of
3
) sorted by relevance
/developtools/packing_tool/adapter/ohos/
H
A
D
ConvertHapToBin.java
37
* @param
binPath
: bin path
40
public static boolean packHapTobin(final String hapPath, final String
binPath
) {
in packHapTobin()
argument
41
if (hapPath.isEmpty() ||
binPath
.isEmpty()) {
in packHapTobin()
42
LOG.error("hapPath or
binPath
is null");
in packHapTobin()
55
if (!BinaryTool.generateBinaryFile(projectPath,
binPath
)) {
in packHapTobin()
68
* @param
binPath
: bin path
71
public static boolean packProjectTobin(final String projectPath, final String
binPath
) {
in packProjectTobin()
argument
72
if (projectPath.isEmpty() ||
binPath
.isEmpty()) {
in packProjectTobin()
73
LOG.error("projectPath or
binPath
is null");
in packProjectTobin()
82
if (!BinaryTool.generateBinaryFile(absProjectPath.get(),
binPath
)) {
in packProjectTobin()
[all...]
H
A
D
CollectBinInfo.java
44
* @param
binPath
: bin path
47
public static String getVersionCode(final String
binPath
) {
in getVersionCode()
argument
49
if (!FileUtils.checkFileIsExists(
binPath
)) {
in getVersionCode()
53
Optional<String> absBinPath = FileUtils.getFormatedPath(
binPath
);
in getVersionCode()
163
String
binPath
= "";
in main()
168
binPath
= args[count + 1];
in main()
175
if (!
binPath
.isEmpty() && versionFlag) {
in main()
176
String versionCode = getVersionCode(
binPath
);
in main()
H
A
D
Utility.java
71
private String
binPath
= "";
field in Utility
255
return
binPath
;
in getBinPath()
258
public void setBinPath(String
binPath
) {
in setBinPath()
argument
259
if (!
binPath
.startsWith(CMD_PREFIX)) {
in setBinPath()
260
this.
binPath
= getFormattedPath(
binPath
);
in setBinPath()
Completed in 3 milliseconds