Home
last modified time | relevance | path

Searched refs:command_obj (Results 1 – 6 of 6) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dcat_helper.py27 def __init__(self, command_obj): argument
33 self.command_obj = command_obj
62 for blr in self.command_obj.WildcardIterator(url_str).IterObjects():
72 self.command_obj.gsutil_api.GetObjectMedia(
Dcopy_helper.py928 command_obj, copy_exception_handler): argument
976 cp_results = command_obj.Apply(
1014 command_obj.Apply(
1531 logger, command_obj, copy_exception_handler, argument
1604 gsutil_api, command_obj, copy_exception_handler)
1993 command_obj, logger, copy_exception_handler, argument
2028 cp_results = command_obj.Apply(
2247 gsutil_api, logger, command_obj, argument
2307 download_file_name, command_obj, logger,
2616 def PerformCopy(logger, src_url, dst_url, gsutil_api, command_obj, argument
[all …]
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
Drsync.py665 def __init__(self, command_obj, base_src_url, base_dst_url): argument
666 self.command_obj = command_obj
667 self.compute_file_checksums = command_obj.compute_file_checksums
668 self.delete_extras = command_obj.delete_extras
669 self.recursion_requested = command_obj.recursion_requested
670 self.logger = self.command_obj.logger
697 command_obj.non_retryable_listing_failures = 0
699 command_obj.Apply(_ListUrlRootFunc, args_iter, _RootListingExceptionHandler,
704 if command_obj.non_retryable_listing_failures:
/external/lldb/include/lldb/Interpreter/
DCommandObjectMultiword.h47 const lldb::CommandObjectSP& command_obj);
138 const lldb::CommandObjectSP& command_obj);
DCommandObject.h172 const lldb::CommandObjectSP& command_obj) in LoadSubCommand() argument
/external/lldb/source/Interpreter/
DCommandInterpreter.cpp849 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get(); in GetCommandObject() local
854 if (command_obj) in GetCommandObject()
855 return command_obj; in GetCommandObject()
857 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get(); in GetCommandObject()
859 if (command_obj) in GetCommandObject()
860 return command_obj; in GetCommandObject()
863 command_obj = GetCommandSP(cmd_cstr, false, false, NULL).get(); in GetCommandObject()
868 if (command_obj) in GetCommandObject()
871 matches->AppendString(command_obj->GetCommandName()); in GetCommandObject()
872 return command_obj; in GetCommandObject()