Home | History | Annotate | Download | only in android

Lines Matching full:current

29  *  current - Ini file containing the current configuration.
36 _cmp_hw_config(IniFile* current, IniFile* saved)
39 const int num_pairs = iniFile_getPairCount(current);
43 D("Different numbers of entries in the HW config files. Current contans %d, while saved contains %d entries.",
48 /* Iterate through the entries in the current file, comparing them to entries
53 if (iniFile_getEntry(current, n, &key, &value1)) {
54 D("Unable to obtain entry %d from the current HW config file", n);
60 D("Saved HW config file is missing entry ('%s', '%s') found in the current HW config.",
69 D("HW config value mismatch for a key '%s': current is '%s' while saved was '%s'",
161 /* Create HW config backup file from the current HW config settings. */