HomeSort by relevance Sort by last modified time
    Searched refs:PKG_PATH_MAX (Results 1 - 8 of 8) sorted by null

  /frameworks/native/cmds/installd/
installd_deps.h 40 extern bool calculate_oat_file_path(char path[PKG_PATH_MAX],
51 extern bool calculate_odex_file_path(char path[PKG_PATH_MAX],
56 extern bool create_cache_path(char path[PKG_PATH_MAX],
installd_constants.h 35 constexpr size_t PKG_PATH_MAX = 256u; /* max size of any path we use */
utils.h 68 int create_pkg_path(char path[PKG_PATH_MAX],
99 int create_user_config_path(char path[PKG_PATH_MAX], userid_t userid);
101 int create_move_path(char path[PKG_PATH_MAX],
installd.cpp 64 bool calculate_oat_file_path(char path[PKG_PATH_MAX],
89 snprintf(path, PKG_PATH_MAX, "%s/%s/%s.odex", oat_dir, instruction_set, file_name);
99 bool calculate_odex_file_path(char path[PKG_PATH_MAX],
103 + strlen("/") + strlen("odex") + 1 > PKG_PATH_MAX) {
128 bool create_cache_path(char path[PKG_PATH_MAX],
138 if (srclen > PKG_PATH_MAX) { // XXX: PKG_NAME_MAX?
150 if (dstlen > PKG_PATH_MAX) {
otapreopt.cpp 735 bool calculate_oat_file_path(char path[PKG_PATH_MAX], const char *oat_dir,
759 PKG_PATH_MAX,
774 bool calculate_odex_file_path(char path[PKG_PATH_MAX], const char *apk_path,
796 if (new_path.length() >= PKG_PATH_MAX) {
804 bool create_cache_path(char path[PKG_PATH_MAX],
814 if (srclen > PKG_PATH_MAX) { // XXX: PKG_NAME_MAX?
828 if (assembled_path.length() + 1 > PKG_PATH_MAX) {
commands.cpp 554 char dex_path[PKG_PATH_MAX];
814 char zip_location_arg[strlen("--zip-location=") + PKG_PATH_MAX];
816 char oat_location_arg[strlen("--oat-location=") + PKG_PATH_MAX];
    [all...]
utils.cpp 136 int create_pkg_path(char path[PKG_PATH_MAX], const char *pkgname,
145 if (strlen(tmp) >= PKG_PATH_MAX) {
251 int create_move_path(char path[PKG_PATH_MAX],
257 >= PKG_PATH_MAX) {
    [all...]
  /frameworks/native/cmds/installd/tests/
installd_utils_test.cpp 314 char path[PKG_PATH_MAX];
333 char path[PKG_PATH_MAX];
346 char path[PKG_PATH_MAX];
349 size_t postfixSize = PKG_PATH_MAX;
359 char path[PKG_PATH_MAX];
372 char path[PKG_PATH_MAX];
385 char path[PKG_PATH_MAX];
395 char path[PKG_PATH_MAX];
402 char path[PKG_PATH_MAX];

Completed in 496 milliseconds