Lines Matching full:c_str
274 int found = dwarf_find_debug_frame(0, &di, ip, segbase, filename.c_str(), map.start, map.end);
631 if (stat(filename.c_str(), &st) != 0 || !S_ISREG(st.st_mode)) {
634 FILE* fp = fopen(filename.c_str(), "reb");
650 if (stat(apk_path.c_str(), &st) != 0 || !S_ISREG(st.st_mode)) {
653 FILE* fp = fopen(apk_path.c_str(), "reb");
688 BACK_LOGW("%s is not a valid apk file", apk_file.c_str());
692 int32_t ret_code = OpenArchive(apk_file.c_str(), &handle);
695 BACK_LOGW("failed to open archive %s: %s", apk_file.c_str(), ErrorCodeString(ret_code));
700 ret_code = FindEntry(handle, ZipString(elf_file.c_str()), &zentry);
702 BACK_LOGW("failed to find %s in %s: %s", elf_file.c_str(), apk_file.c_str(),
707 BACK_LOGW("%s is compressed in %s, which doesn't support running directly", elf_file.c_str(),
708 apk_file.c_str());
715 BACK_LOGW("failed to read %s in %s: %s", elf_file.c_str(), apk_file.c_str(),
716 buffer_or_err.getError().message().c_str());
721 BACK_LOGW("failed to create binary for %s in %s: %s", elf_file.c_str(), apk_file.c_str(),
722 binary_or_err.getError().message().c_str());