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

  /external/boringssl/src/crypto/
directory_win.c 50 char entry_name[NAME_MAX + 1]; member in struct:OPENSSL_dir_context_st
111 while (wdir[len_0] && len_0 < (sizeof((*ctx)->entry_name) - 1)) {
117 (*ctx)->entry_name, sizeof((*ctx)->entry_name),
120 (*ctx)->entry_name[index] = (char)wdir[index];
124 strncpy((*ctx)->entry_name, (const char *)(*ctx)->ctx.cFileName,
125 sizeof((*ctx)->entry_name) - 1);
128 (*ctx)->entry_name[sizeof((*ctx)->entry_name) - 1] = '\0';
130 return (*ctx)->entry_name;
    [all...]
  /system/extras/simpleperf/
read_apk.h 39 std::string entry_name,
43 , entry_name_(entry_name)
53 const std::string &entry_name() const { return entry_name_; } function in class:EmbeddedElf
read_apk.cpp 98 std::string entry_name; local
99 entry_name.resize(zname.name_length,'\0');
100 memcpy(&entry_name[0], zname.name, zname.name_length);
103 << entry_name << "'"; local
108 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, entry_name, zentry.offset,
  /external/protobuf/src/google/protobuf/testing/
file.cc 151 string entry_name = find_data.cFileName; local
152 if (entry_name != "." && entry_name != "..") {
153 string path = name + "/" + entry_name;
177 string entry_name = entry->d_name;
178 if (entry_name != "." && entry_name != "..") {
179 DeleteRecursively(name + "/" + entry_name, NULL, NULL);
  /frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp 263 llvm::StringRef entry_name = target().getEntry(pModule); local
270 const LDSymbol* entry_symbol = pModule.getNamePool().findSymbol(entry_name);
284 result = strtoull(entry_name.data(), &endptr, 0);
287 llvm::errs() << "cannot find entry symbol '" << entry_name.data()
  /system/connectivity/shill/wifi/
wifi_provider_unittest.cc 746 string entry_name = AddServiceToProfileStorage( local
752 default_profile_, entry_name, &error));
758 string entry_name = AddServiceToProfileStorage( local
764 default_profile_, entry_name, &error));
770 string entry_name = AddServiceToProfileStorage( local
776 default_profile_, entry_name, &error));
783 string entry_name = AddServiceToProfileStorage( local
789 default_profile_, entry_name, &error));
796 string entry_name = AddServiceToProfileStorage( local
802 default_profile_, entry_name, &error))
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 533 bool add_zip_entry_from_fd(const std::string& entry_name, int fd) {
536 entry_name.c_str());
540 // MYLOGD("Adding zip entry %s\n", entry_name.c_str());
541 int32_t err = zip_writer->StartEntryWithTime(entry_name.c_str(),
544 MYLOGE("zip_writer->StartEntryWithTime(%s): %s\n", entry_name.c_str(),
555 MYLOGE("read(%s): %s\n", entry_name.c_str(), strerror(errno));
574 bool add_zip_entry(const std::string& entry_name, const std::string& entry_path) {
581 return add_zip_entry_from_fd(entry_name, fd.get());
600 static bool add_text_zip_entry(const std::string& entry_name, const std::string& content) {
602 MYLOGD("Not adding text zip entry %s because zip_writer is not set\n", entry_name.c_str())
1341 std::string entry_name = base_name + "-" + suffix + ".txt"; local
    [all...]
  /system/core/libziparchive/
zip_archive.cc 414 ZipString entry_name; local
415 entry_name.name = file_name;
416 entry_name.name_length = file_name_length;
418 archive->hash_table_size, entry_name);
    [all...]
  /system/connectivity/shill/
manager.cc 833 const std::string& entry_name) {
837 (*it)->GetStorageIdentifier() == entry_name) {
858 string entry_name = service->GetLoadableStorageIdentifier( local
860 if (!entry_name.empty()) {
861 profile_entries[profile->GetRpcIdentifier()] = entry_name;
868 const ProfileRefPtr& profile, const std::string& entry_name, Error* error) {
871 service->GetStorageIdentifier() == entry_name) {
876 SLOG(this, 2) << "Entry " << entry_name
882 const ProfileRefPtr& profile, const std::string& entry_name, Error* error) {
884 Technology::IdentifierFromStorageGroup(entry_name);
    [all...]

Completed in 843 milliseconds