Searched defs:restart (Results 1 - 25 of 66) sorted by relevance

123

/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DVideoSource.java32 * Java version of VideoSourceInterface, extended with stop/restart
50 // the last call to restart() (if any). Note that this isn't "start()";
52 public void restart() { method in class:VideoSource
53 restart(nativeSource);
62 private static native void restart(long nativeSource); method in class:VideoSource
/external/autotest/client/common_lib/
H A Dcheck_version.py29 # We can't restart when running under mod_python.
32 self.restart()
68 def restart(self): member in class:check_python_version
/external/autotest/server/cros/
H A Dtradefed_chromelogin.py20 """Marks state as "dirty" - restart needed after test."""
27 @param restart: indicate if a restart before destruction is required.
33 # We will override reboot/restart options to some degree. Keep track
39 if kwargs.get('restart'):
113 """On exit restart the browser or reboot the machine.
127 self.restart()
134 def restart(self): member in class:ChromeLogin
/external/v8/tools/testrunner/server/
H A Ddaemon.py117 return # not an error in a restart
136 def restart(self): member in class:Daemon
146 called after the process has been daemonized by start() or restart().
/external/autotest/client/cros/
H A Dcros_ui.py25 restart.
109 def restart(report_stop_failure=False): function
140 """Nuke the login manager, waiting for it to restart."""
141 restart(lambda: utils.nuke_process_by_name(constants.SESSION_MANAGER))
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
H A DPower_Suite.py15 def restart(self, _object, _attributes={}, **_arguments): member in class:Power_Suite_Events
16 """restart: Restart the computer
/external/v8/src/inspector/
H A Djava-script-call-frame.cc116 v8::MaybeLocal<v8::Value> JavaScriptCallFrame::restart() { function in class:v8_inspector::JavaScriptCallFrame
124 callFrame->Get(context, toV8StringInternalized(m_isolate, "restart"))
H A Ddebugger-script.js423 function restart() function
425 return frameMirror.restart();
445 "restart": restart,
/external/autotest/client/site_tests/security_ASLR/
H A Dsecurity_ASLR.py104 def restart(self): member in class:UpstartProcess
106 utils.system('initctl restart %s' % self._service_name)
120 def restart(self): member in class:SystemdProcess
122 # Reset the restart rate counter each time before process restart to
123 # avoid systemd restart rate limiting.
125 utils.system('systemctl restart %s' % self._service_name)
222 'Service "%s" retained PID %d after restart.' % (name, pid))
225 process.restart()
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_compute.c87 struct tgsi_exec_machine *machine, bool restart)
89 if (!restart) {
102 tgsi_exec_machine_run(machine, restart ? machine->pc : 0);
85 cs_run(const struct sp_compute_shader *cs, int g_w, int g_h, int g_d, struct tgsi_exec_machine *machine, bool restart) argument
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
H A DLegacy_suite.py15 def restart(self, _no_object=None, _attributes={}, **_arguments): member in class:Legacy_suite_Events
16 """restart: Restart the computer
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/controller/
H A DActivityController.java69 public ActivityController<T> restart() { method in class:ActivityController
77 /* reason= */ from(String.class, "restart()"));
/external/curl/lib/
H A Dpingpong.c354 bool restart = FALSE; local
394 pp->nread_resp = 0; /* restart */
408 restart = TRUE;
421 restart = TRUE;
430 "cache", clear the buffer to make space and restart. */
432 restart = TRUE;
436 restart = TRUE;
446 if(restart) {
/external/eigen/Eigen/src/SparseCore/
H A DAmbiVector.h46 void restart();
163 void AmbiVector<_Scalar,_StorageIndex>::restart() function in class:Eigen::internal::AmbiVector
221 eigen_assert(i>=llElements[m_llCurrent].index && "you must call restart() before inserting an element with lower or equal index");
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DGMRES.h29 * \param restart number of iterations for a restart
57 Index &iters, const Index &restart, typename Dest::RealScalar & tol_error) {
87 FMatrixType H = FMatrixType::Zero(m, restart + 1);
88 VectorType w = VectorType::Zero(restart + 1);
89 VectorType tau = VectorType::Zero(restart + 1);
92 std::vector < JacobiRotation < Scalar > > G(restart);
103 for (Index k = 1; k <= restart; ++k)
127 if (k <= restart)
163 if (stop || k == restart)
56 gmres(const MatrixType & mat, const Rhs & rhs, Dest & x, const Preconditioner & precond, Index &iters, const Index &restart, typename Dest::RealScalar & tol_error) argument
306 set_restart(const Index restart) argument
[all...]
H A DDGMRES.h65 * Gram-Schmidt. At each restart, a few approximated eigenvectors
171 * Get the restart value
173 int restart() { return m_restart; } function in class:Eigen::DGMRES
176 * Set the restart value (default is 30)
178 void set_restart(const int restart) { m_restart=restart; } argument
181 * Set the number of eigenvalues to deflate at each restart
223 mutable StorageIndex m_neig; //Number of eigenvalues to extract at each restart
232 mutable bool m_force; // Force the use of deflation at each restart
269 // Compute the new residual vector for the restart
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DSquaringDrawable.java88 public boolean setVisible(boolean visible, boolean restart) { argument
89 return wrapped.setVisible(visible, restart);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_minmax_index.c232 * If primitive restart is enabled, we need to ignore restart
242 const GLboolean restart = ctx->Array._PrimitiveRestart; local
266 if (restart) {
294 if (restart) {
316 if (restart) {
/external/ppp/pppd/
H A Dlcp.h91 bool restart; /* Restart vs. exit after close */ member in struct:lcp_options
/external/syslinux/core/lwip/src/netif/ppp/
H A Dlcp.h86 u_int restart : 1; /* Restart vs. exit after close */ member in struct:lcp_options
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
H A DTimelineApplet.java162 private void restart() { method in class:TimelineApplet
173 restart();
580 restart();
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-main.c2220 /* Back up guest state to restart a system call. */
2525 [1-2) restart nothing has happened (restart syscall)
2526 [2] restart syscall hasn't started, or kernel wants to restart
2530 Sometimes we never want to restart an interrupted syscall (because
2531 sigaction says not to), so we only restart if "restart" is True.
2536 syscall is set up for restart, which means that the pre-wrapper may
2544 Bool restart,
2541 fixup_guest_state_after_syscall_interrupted( ThreadId tid, Addr ip, SysRes sres, Bool restart, struct vki_ucontext *uc) argument
[all...]
/external/autotest/client/cros/nfc/
H A Dconsole.py118 def restart(self): member in class:NfcClient
469 self._nfc_client.restart()
474 'run many times to restart the client in case of '
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifDrawable.java181 public boolean setVisible(boolean visible, boolean restart) { argument
188 return super.setVisible(visible, restart);
/external/python/cpython2/Lib/plat-mac/
H A Dfindertools.py91 def restart(): function
94 finder.restart()
753 print 'Testing restart...'
755 result = restart()

Completed in 1032 milliseconds

123