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

  /art/runtime/base/
logging.cc 44 static std::unique_ptr<std::string> gProgramInvocationName;
65 return (gProgramInvocationName.get() != nullptr) ? gProgramInvocationName->c_str() : "art";
89 gProgramInvocationName.reset(new std::string(argv[0]));
  /system/core/base/
logging.cpp 173 static auto& gProgramInvocationName = *new std::unique_ptr<std::string>();
180 if (gProgramInvocationName == nullptr) {
181 gProgramInvocationName.reset(new std::string(getprogname()));
184 return gProgramInvocationName->c_str();
251 gProgramInvocationName.reset(new std::string(basename(argv[0])));

Completed in 65 milliseconds