OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zip_fd
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/chrome/test/chromedriver/chrome/
zip_internal.h
32
// Opens the file referred to by |
zip_fd
| for unzipping.
33
unzFile OpenFdForUnzipping(int
zip_fd
);
51
// Opens the file referred to by |
zip_fd
| for zipping. |append_flag| will be
53
zipFile OpenFdForZipping(int
zip_fd
, int append_flag);
zip_internal.cc
250
unzFile OpenFdForUnzipping(int
zip_fd
) {
252
FillFdOpenFileFunc(&zip_funcs,
zip_fd
);
307
zipFile OpenFdForZipping(int
zip_fd
, int append_flag) {
309
FillFdOpenFileFunc(&zip_funcs,
zip_fd
);
zip_reader.h
85
// Opens the zip file referred to by the platform file |
zip_fd
|.
87
bool OpenFromPlatformFile(base::PlatformFile
zip_fd
);
zip_reader.cc
93
bool ZipReader::OpenFromPlatformFile(base::PlatformFile
zip_fd
) {
97
zip_file_ = internal::OpenFdForUnzipping(
zip_fd
);
99
zip_file_ = internal::OpenHandleForUnzipping(
zip_fd
);
/external/chromium_org/third_party/zlib/google/
zip_internal.h
32
// Opens the file referred to by |
zip_fd
| for unzipping.
33
unzFile OpenFdForUnzipping(int
zip_fd
);
51
// Opens the file referred to by |
zip_fd
| for zipping. |append_flag| will be
53
zipFile OpenFdForZipping(int
zip_fd
, int append_flag);
zip_internal.cc
250
unzFile OpenFdForUnzipping(int
zip_fd
) {
252
FillFdOpenFileFunc(&zip_funcs,
zip_fd
);
307
zipFile OpenFdForZipping(int
zip_fd
, int append_flag) {
309
FillFdOpenFileFunc(&zip_funcs,
zip_fd
);
zip_reader.h
86
// Opens the zip file referred to by the platform file |
zip_fd
|.
88
bool OpenFromPlatformFile(base::PlatformFile
zip_fd
);
zip_unittest.cc
206
const base::PlatformFile
zip_fd
=
local
208
ASSERT_LE(0,
zip_fd
);
209
EXPECT_TRUE(zip::ZipFiles(src_dir, zip_file_list_,
zip_fd
));
210
base::ClosePlatformFile(
zip_fd
);
zip_reader.cc
93
bool ZipReader::OpenFromPlatformFile(base::PlatformFile
zip_fd
) {
97
zip_file_ = internal::OpenFdForUnzipping(
zip_fd
);
99
zip_file_ = internal::OpenHandleForUnzipping(
zip_fd
);
/frameworks/native/cmds/installd/
commands.c
581
static void run_dexopt(int
zip_fd
, int odex_fd, const char* input_file_name,
589
sprintf(zip_num, "%d",
zip_fd
);
598
static void run_dex2oat(int
zip_fd
, int oat_fd, const char* input_file_name,
608
sprintf(zip_fd_arg, "--zip-fd=%d",
zip_fd
);
661
int res,
zip_fd
=-1, out_fd=-1;
local
689
zip_fd
= open(apk_path, O_RDONLY, 0);
690
if (
zip_fd
< 0) {
742
run_dexopt(
zip_fd
, out_fd, apk_path, out_path, dexopt_flags);
744
run_dex2oat(
zip_fd
, out_fd, apk_path, out_path, dexopt_flags);
762
close(
zip_fd
);
[
all
...]
/art/dex2oat/
dex2oat.cc
581
int
zip_fd
= -1;
local
630
if (!ParseInt(zip_fd_str, &
zip_fd
)) {
772
if (dex_filenames.empty() &&
zip_fd
== -1) {
776
if (!dex_filenames.empty() &&
zip_fd
!= -1) {
792
if (
zip_fd
!= -1 && zip_location.empty()) {
[
all
...]
Completed in 155 milliseconds