HomeSort by relevance Sort by last modified time
    Searched refs:to_return (Results 1 - 13 of 13) sorted by null

  /external/autotest/client/common_lib/cros/
dev_server_unittest.py 85 to_return = StringIO.StringIO('{"free_disk": 1024}')
87 data=None).AndReturn(to_return)
110 to_return = StringIO.StringIO('{"free_disk": 1024}')
112 data=None).AndReturn(to_return)
164 to_return = StringIO.StringIO('Success')
167 mox.StrContains('stage?'))).AndReturn(to_return)
168 to_return = StringIO.StringIO('True')
172 to_return)
184 to_return = StringIO.StringIO('Success')
187 mox.StrContains('stage?'))).AndReturn(to_return)
    [all...]
  /external/autotest/site_utils/suite_scheduler/
forgiving_config_parser.py 42 to_return = ConfigParser.SafeConfigParser.read(self, filenames)
44 return to_return
manifest_versions_unittest.py 123 def _ExpectGlob(self, to_return):
126 mox.IgnoreArg()).AndReturn(to_return)
  /external/strace/
mpers.awk 65 function leave(array_idx, to_return)
68 return to_return
104 to_return = array[what_idx]["upper_bound"]
105 if ("" == to_return)
106 to_return = 0
107 returned_size = to_return * returned_size
108 return leave(what_idx, to_return)
  /system/connectivity/shill/test-scripts/
connect-disconnect 64 to_return = connect_success and disconnect_success
66 if not to_return:
70 return to_return
  /system/connectivity/shill/
dhcp_properties.cc 114 std::unique_ptr<DhcpProperties> to_return(new DhcpProperties());
115 to_return->properties_ = base.properties_;
119 to_return->properties_.Set(name, value);
121 return to_return;
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/
unit_testcase.py 229 to_return = []
231 to_return.append(stdout)
233 to_return.append(stderr)
235 to_return.append(mock_log_handler)
236 if len(to_return) == 1:
237 return to_return[0]
238 return tuple(to_return)
  /external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/
network_3GRecoverFromGobiDesync.py 52 def to_return(*args, **kwargs): function in function:TestEventLoop.ExceptionWrapper
59 return to_return
63 to_return = subprocess.Popen(*args, **kwargs)
64 self.to_kill.append(to_return)
65 return to_return
  /external/autotest/client/cros/
mainloop.py 96 def to_return(self, e): function in function:GenericTesterMainLoop.build_error_handler
99 return to_return.__get__(self, GenericTesterMainLoop)
  /external/autotest/server/cros/dynamic_suite/
job_status.py 457 to_return = {}
465 if (s.hostname not in to_return or
466 candidate.is_worse_than(to_return[s.hostname])):
467 to_return[s.hostname] = candidate
474 if host not in to_return:
475 to_return[host] = Status(Status.STATUS_MAP[e['status']],
480 return to_return
  /toolchain/binutils/binutils-2.25/gas/testsuite/lib/
gas-defs.exp 92 set to_return ""
95 set to_return [file_contents "$return_contents_of"]
96 regsub "\n$" $to_return "" to_return
104 return [list [lindex $status 0] "$to_return"]
  /external/skia/src/core/
SkFindAndPlaceGlyph.h 270 SkPoint to_return{fPositions[0], fPositions[1]};
272 return to_return;
  /external/autotest/frontend/afe/
site_rpc_interface_unittest.py 81 def _mockRpcUtils(self, to_return, control_file_substring=''):
84 @param to_return: the value that rpc_utils.create_job_common() should
107 ).AndReturn(to_return)
    [all...]

Completed in 2114 milliseconds