Home
last modified time | relevance | path

Searched refs:component_filename_ (Results 1 – 2 of 2) sorted by relevance

/test/vts/drivers/hal/common/driver_base/
DDriverBase.cpp70 component_filename_(NULL), in DriverBase()
73 DriverBase::~DriverBase() { free(component_filename_); } in ~DriverBase()
102 component_filename_ = (char*)malloc(filename.length() + 1); in LoadTargetComponent()
103 strcpy(component_filename_, filename.c_str()); in LoadTargetComponent()
104 LOG(DEBUG) << "Module file name: " << component_filename_; in LoadTargetComponent()
180 if (component_filename_ != NULL) { in FunctionCallBegin()
182 string target = string(component_filename_) + "_intermediates"; in FunctionCallBegin()
/test/vts/drivers/hal/common/include/driver_base/
DDriverBase.h113 char* component_filename_; variable