/system/connectivity/apmanager/ |
mock_config.h | 35 bool(Error* error, std::string* config_str));
|
config.cc | 202 bool Config::GenerateConfigFile(Error* error, string* config_str) { 213 config_str, "%s=%s\n", kHostapdConfigKeySsid, ssid.c_str()); 225 base::StringAppendF(config_str, 233 config_str, "%s=%d\n", kHostapdConfigKeyChannel, GetChannel()); 236 if (!AppendInterface(error, config_str)) { 241 if (!AppendHwMode(error, config_str)) { 246 if (!AppendSecurityMode(error, config_str)) { 252 base::StringAppendF(config_str, 256 base::StringAppendF(config_str, 263 if (!AppendHostapdDefaults(error, config_str)) { [all...] |
config.h | 54 virtual bool GenerateConfigFile(Error* error, std::string* config_str); 148 bool AppendHostapdDefaults(Error* error, std::string* config_str); 151 bool AppendHwMode(Error* error, std::string* config_str); 154 bool AppendInterface(Error* error, std::string* config_str); 157 bool AppendSecurityMode(Error* error, std::string* config_str);
|
dhcp_server.cc | 80 string config_str = GenerateConfigFile(); local 83 if (!file_writer_->Write(file_name, config_str)) {
|
service_unittest.cc | 148 std::string config_str(kHostapdConfig); 151 DoAll(SetArgPointee<1>(config_str), Return(true)));
|
service.cc | 108 string config_str; local 109 if (!config_->GenerateConfigFile(error, &config_str)) { 116 if (!file_writer_->Write(config_file_name, config_str)) {
|
/tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/minicircuits/ |
telnet.py | 68 config_str = self._tnhelper.cmd("MN?") 70 if config_str.startswith("MN="): 71 config_str = config_str[len("MN="):] 73 self.properties = dict(zip(['model', 'max_freq', 'max_atten'], config_str.split("-", 2)))
|
/system/core/include/cutils/ |
config_utils.h | 52 const char* config_str(cnode *root, const char *name, const char *_default);
|
/system/core/libdiskconfig/ |
diskconfig.c | 111 if (!(tmp = config_str(partnode, "type", NULL))) { 126 if ((tmp = config_str(partnode, "len", NULL)) != NULL) { 174 if (!(tmp = config_str(devroot, "path", path_override))) { 181 if (!(tmp = config_str(devroot, "scheme", NULL))) { 195 tmp = config_str(devroot, "sector_size", "512"); 203 if (!(tmp = config_str(devroot, "start_lba", NULL))) { 214 if (!(tmp = config_str(devroot, "num_lba", NULL))) {
|
/external/android-clat/ |
config.c | 48 if(!(tmp = config_str(root, item_name, defaultvar))) { 67 if(!(tmp = config_str(root, item_name, defaultvar))) { 105 if(!(tmp = config_str(root, item_name, defaultvar))) { 130 if(!(tmp = config_str(root, item_name, defaultvar))) {
|
/system/core/libcutils/ |
config_utils.c | 85 const char* config_str(cnode *root, const char *name, const char *_default) function
|