/system/core/include/cutils/ |
config_utils.h | 52 const char* config_str(cnode *root, const char *name, const char *_default);
|
/external/chromium_org/remoting/host/setup/ |
daemon_controller_delegate_win.cc | 59 std::string config_str; local 60 base::JSONWriter::Write(&config, &config_str); 61 ScopedBstr config_scoped_bstr(UTF8ToUTF16(config_str).c_str()); 237 ScopedBstr config_str(NULL); 238 ConfigToString(*config, &config_str); 239 if (config_str == NULL) { 252 hr = control_->UpdateConfig(config_str); 427 ScopedBstr config_str(NULL); 428 ConfigToString(*config, &config_str); 429 if (config_str == NULL) [all...] |
/system/core/libdiskconfig/ |
diskconfig.c | 110 if (!(tmp = config_str(partnode, "type", NULL))) { 125 if ((tmp = config_str(partnode, "len", NULL)) != NULL) { 173 if (!(tmp = config_str(devroot, "path", path_override))) { 180 if (!(tmp = config_str(devroot, "scheme", NULL))) { 194 tmp = config_str(devroot, "sector_size", "512"); 202 if (!(tmp = config_str(devroot, "start_lba", NULL))) { 213 if (!(tmp = config_str(devroot, "num_lba", NULL))) {
|
/bootable/diskinstaller/ |
installer.c | 209 filename = config_str(img, "filename", NULL); 212 if ((tmp = config_str(img, "offset", NULL)) != NULL) 216 if ((tmp = config_str(img, "partition", NULL)) != NULL) { 238 if ((tmp = config_str(img, "mkfs", NULL)) != NULL) { 287 if ((tmp = config_str(img, "flags", NULL)) != NULL) { 309 if (!(tmp = config_str(img, "type", NULL))) {
|
/external/android-clat/ |
config.c | 47 if(!(tmp = config_str(root, item_name, defaultvar))) { 66 if(!(tmp = config_str(root, item_name, defaultvar))) { 104 if(!(tmp = config_str(root, item_name, defaultvar))) { 129 if(!(tmp = config_str(root, item_name, defaultvar))) {
|
/external/chromium_org/remoting/host/plugin/ |
host_script_object.cc | 682 std::string config_str = StringFromNPVariant(args[0]); local 684 base::JSONReader::Read(config_str, base::JSON_ALLOW_TRAILING_COMMAS)); 685 if (config_str.empty() || !config.get() || 815 std::string config_str = StringFromNPVariant(args[0]); local 817 base::JSONReader::Read(config_str, base::JSON_ALLOW_TRAILING_COMMAS)); 818 if (config_str.empty() || !config.get() || 1032 std::string config_str; local [all...] |
/external/chromium_org/remoting/host/win/ |
elevated_controller.cc | 454 std::string config_str = UTF16ToUTF8( local 456 scoped_ptr<base::Value> config_value(base::JSONReader::Read(config_str));
|
/system/core/libcutils/ |
config_utils.c | 85 const char* config_str(cnode *root, const char *name, const char *_default) function
|