HomeSort by relevance Sort by last modified time
    Searched defs:obb (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/jni/
android_content_res_ObbScanner.cpp 44 sp<ObbFile> obb = new ObbFile(); local
45 if (!obb->readFrom(filePath)) {
47 jniThrowException(env, "java/io/IOException", "Could not read OBB file");
53 const char* packageNameStr = obb->getPackageName().string();
57 jniThrowException(env, "java/io/IOException", "Could not read OBB file");
62 env->SetIntField(obbInfo, gObbInfoClassInfo.version, obb->getVersion());
63 env->SetIntField(obbInfo, gObbInfoClassInfo.flags, obb->getFlags());
66 const unsigned char* salt = obb->getSalt(&saltLen);
  /frameworks/base/tools/obbtool/
Main.cpp 72 fprintf(stderr, "Opaque Binary Blob (OBB) Tool\n\n");
76 " Adds an OBB signature to the file.\n\n", gProgName);
79 " -n <package name> sets the OBB package name (required)\n"
80 " -v <OBB version> sets the OBB version (required)\n"
81 " -o sets the OBB overlay flag\n"
86 " Removes the OBB signature from the file.\n\n", gProgName);
89 " Prints the OBB signature information of a file.\n\n", gProgName);
93 ObbFile *obb = new ObbFile(); local
94 if (obb->readFrom(filename))
116 ObbFile *obb = new ObbFile(); local
131 ObbFile *obb = new ObbFile(); local
    [all...]

Completed in 137 milliseconds