Home
last modified time | relevance | path

Searched refs:args_tuple (Results 1 – 13 of 13) sorted by relevance

/external/autotest/site_utils/rpm_control_system/
Drpm_client.py41 args_tuple = (host.hostname, new_state)
45 args_tuple = (host.hostname,
53 _set_power(args_tuple, timeout_mins)
56 def _set_power(args_tuple, timeout_mins=RPM_CALL_TIMEOUT_MINS): argument
67 endpoint = (client.set_power_via_poe if len(args_tuple) == 2
71 args=args_tuple,
83 'state: %s.' % (args_tuple[0], args_tuple[-1]))
144 args_tuple = (options.machine, options.state)
149 args_tuple = (options.machine, options.p_hostname, options.outlet,
151 _set_power(args_tuple)
/external/google-fruit/include/fruit/impl/component_storage/
Dcomponent_storage_entry.defn.h76 std::tuple<Args...> args_tuple; variable
79 inline ComponentInterfaceImpl(fun_t fun, std::tuple<Args...> args_tuple) in ComponentInterfaceImpl() argument
80 … : ComponentInterface(reinterpret_cast<erased_fun_t>(fun)), args_tuple(std::move(args_tuple)) {} in ComponentInterfaceImpl()
88 return args_tuple == casted_other.args_tuple; in areParamsEqual()
92 …ent component = callWithTuple<Component, Args...>(reinterpret_cast<fun_t>(erased_fun), args_tuple); in addBindings()
99 std::size_t args_hash = hashTuple(args_tuple); in hashCode()
104 return new ComponentInterfaceImpl{reinterpret_cast<fun_t>(erased_fun), args_tuple}; in copy()
114 … std::tuple<Args...> args_tuple) { in create() argument
119 new ComponentInterfaceImpl<Component, Args...>(fun, std::move(args_tuple)); in create()
126 …turn LazyComponentWithArgs::create(component_function.getComponent, component_function.args_tuple); in create()
[all …]
Dpartial_component_storage.defn.h356 std::tuple<Args...> args_tuple; variable
360 OtherComponent (*fun1)(Args...), std::tuple<Args...> args_tuple) in PartialComponentStorage() argument
361 : previous_storage(previous_storage), fun(fun1), args_tuple(std::move(args_tuple)) {} in PartialComponentStorage()
364 …ntries.push_back(ComponentStorageEntry::LazyComponentWithArgs::create(fun, std::move(args_tuple))); in addBindings()
455 std::tuple<ReplacedFunArgs...> args_tuple;
459 … OtherComponent (*fun1)(ReplacedFunArgs...), std::tuple<ReplacedFunArgs...> args_tuple)
460 : previous_storage(previous_storage), fun(fun1), args_tuple(std::move(args_tuple)) {}
464 …nentStorageEntry::LazyComponentWithArgs::createReplacedComponentEntry(fun, std::move(args_tuple)));
507 std::tuple<ReplacementFunArgs...> args_tuple;
511 std::tuple<ReplacementFunArgs...> args_tuple)
[all …]
Dcomponent_storage_entry.h262 static ComponentStorageEntry create(Component (*fun)(Args...), std::tuple<Args...> args_tuple);
269 std::tuple<Args...> args_tuple);
273 std::tuple<Args...> args_tuple);
/external/autotest/client/common_lib/cros/fake_device_server/
Dcommon_util.py48 def parse_common_args(args_tuple, kwargs, supported_operations=set()): argument
72 args = list(args_tuple)
/external/google-fruit/include/fruit/impl/
Dcomponent_function.defn.h29 : getComponent(getComponent), args_tuple{args...} { in ComponentFunction()
44 return fruit::impl::callWithTuple(getComponent, args_tuple); in operator()
Dcomponent.defn.h258 std::tuple<FormalArgs...> args_tuple{std::forward<Args>(args)...}; in install()
260 return {{storage, getComponent, std::move(args_tuple)}}; in install()
285 std::tuple<FormalArgs...> args_tuple{std::forward<Args>(args)...}; in replace()
287 return {{storage, getReplacedComponent, std::move(args_tuple)}}; in replace()
302 std::tuple<GetReplacementComponentFormalArgs...> args_tuple{std::forward<Args>(args)...}; in with()
304 return {{storage, getReplacementComponent, std::move(args_tuple)}}; in with()
/external/google-fruit/include/fruit/
Dcomponent_function.h32 std::tuple<ComponentFunctionArgs...> args_tuple; variable
/external/tensorflow/tensorflow/core/util/
Dcuda_launch_config.h337 auto args_tuple = std::tuple<Ts...>(arguments...); in CudaLaunchKernel() local
338 auto arg_ptrs = detail::GetArrayOfElementPointers(&args_tuple); in CudaLaunchKernel()
/external/python/cpython2/Python/
Dcodecs.c180 PyObject *args_tuple(PyObject *object, in args_tuple() function
351 args = args_tuple(object, errors); in _PyCodec_EncodeInternal()
395 args = args_tuple(object, errors); in _PyCodec_DecodeInternal()
/external/python/cpython2/Objects/
Dexceptions.c2188 PyObject *args_tuple; in _PyExc_Init() local
2194 args_tuple = PyTuple_Pack(1, exc_message); in _PyExc_Init()
2195 if (!args_tuple) in _PyExc_Init()
2199 if (BaseException_init(err_inst, args_tuple, NULL)) in _PyExc_Init()
2201 Py_DECREF(args_tuple); in _PyExc_Init()
/external/python/cpython2/Lib/test/
Dregrtest.py726 args_tuple = (
733 yield (test, args_tuple)
747 test, args_tuple = next(pending)
753 args = base_cmd + ['--slaveargs', json.dumps(args_tuple)]
/external/python/cpython3/Python/
Dcodecs.c234 PyObject *args_tuple(PyObject *object, in args_tuple() function
421 args = args_tuple(object, errors); in _PyCodec_EncodeInternal()
467 args = args_tuple(object, errors); in _PyCodec_DecodeInternal()