Home | History | Annotate | Download | only in tko

Lines Matching refs:keyval_path

115     def load_iterations(keyval_path):
118 @param keyval_path: String path to a keyval file.
234 def load_attributes(keyval_path):
241 @param keyval_path: The string path to a keyval file.
246 if not os.path.exists(keyval_path):
248 return utils.read_keyval(keyval_path)
268 keyval_path = os.path.join(job_dir, sub_keyval_path)
269 if os.path.isfile(keyval_path):
270 return utils.read_keyval(keyval_path)
337 def load_from_keyval(cls, keyval_path):
345 @param keyval_path: The string path to a keyval file.
350 if not os.path.exists(keyval_path):
356 for line in file(keyval_path):