HomeSort by relevance Sort by last modified time
    Searched defs:stop (Results 51 - 75 of 2582) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/autotest/client/profilers/ftrace/
ftrace.py 113 def stop(self, test): member in class:ftrace
115 Stop ftrace profiler.
  /external/autotest/client/profilers/oprofile/
oprofile.py 129 def stop(self, test): member in class:oprofile
131 utils.system(self.opcontrol + ' --stop')
  /external/autotest/server/
profiler.py 67 def stop(self, test, host=None): member in class:profiler_proxy
68 raise NotImplementedError('stop not implemented')
  /external/autotest/site_utils/lxc/container_pool/
async_listener.py 66 def stop(self): member in class:AsyncListener
67 """Stop listening for connections.
112 self.stop()
148 # The stop method uses a fake connection to unblock the polling
  /external/autotest/utils/
emulator_manager.py 10 EmulatorManager.stop is called. Call EmulatorManager.verify_stop to
51 """Wait for emulator on our port to stop.
53 @param timeout_secs: Max seconds to wait for the emulator to stop.
129 def stop(self, kill=False): member in class:EmulatorManager
130 """Send signal to stop emulator process.
146 self.stop()
148 self.stop(kill=True)
150 raise RuntimeError('Emulator running on port %s failed to stop.'
  /external/compiler-rt/test/tsan/
signal_reset.cc 13 int stop; variable
22 while (__atomic_load_n(&stop, __ATOMIC_RELAXED) == 0) {
66 __atomic_store_n(&stop, 1, __ATOMIC_RELAXED);
  /external/deqp/execserver/
xsPosixFileReader.cpp 100 void FileReader::stop (void) function in class:xs::posix::FileReader
  /external/devlib/devlib/instrument/
energy_probe.py 79 def stop(self): member in class:EnergyProbeInstrument
gem5power.py 64 def stop(self): member in class:Gem5PowerInstrument
  /external/devlib/devlib/module/
cooling.py 42 def stop(self): member in class:MbedFanActiveCoolingModule
61 def stop(self): member in class:OdroidXU3ctiveCoolingModule
  /external/javasqlite/src/main/java/SQLite/
Vm.java 61 public native void stop() throws SQLite.Exception; method in class:Vm
  /external/libunwind/tests/
forker.c 36 struct timeval start, stop; local
69 gettimeofday (&stop, NULL);
71 secs = ((stop.tv_sec + 1e-6 * stop.tv_usec)
  /external/libxkbcommon/xkbcommon/bench/
compose.c 36 struct timespec start, stop, elapsed; local
59 clock_gettime(CLOCK_MONOTONIC, &stop);
64 elapsed.tv_sec = stop.tv_sec - start.tv_sec;
65 elapsed.tv_nsec = stop.tv_nsec - start.tv_nsec;
rules.c 36 struct timespec start, stop, elapsed; local
57 clock_gettime(CLOCK_MONOTONIC, &stop);
59 elapsed.tv_sec = stop.tv_sec - start.tv_sec;
60 elapsed.tv_nsec = stop.tv_nsec - start.tv_nsec;
rulescomp.c 35 struct timespec start, stop, elapsed; local
50 clock_gettime(CLOCK_MONOTONIC, &stop);
52 elapsed.tv_sec = stop.tv_sec - start.tv_sec;
53 elapsed.tv_nsec = stop.tv_nsec - start.tv_nsec;
  /external/python/cpython2/Demo/tkinter/guido/
brownian.py 17 stop = 0 # Set when main loop exits variable
24 while not stop:
35 global stop
48 stop = 1
  /external/python/cpython2/Lib/hotshot/
__init__.py 23 self.stop = p.stop
38 def stop(self): member in class:Profile
39 """Stop the profiler."""
40 self._prof.stop()
  /external/python/cpython3/Include/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon33190
33 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
36 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
42 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
44 Py_ssize_t *start, Py_ssize_t *stop,
48 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \
49 PySlice_Unpack((slice), (start), (stop), (step)) < 0 ? \
51 ((*(slicelen) = PySlice_AdjustIndices((length), (start), (stop), *(step))), \
54 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
    [all...]
  /external/skia/src/core/
SkBuffer.cpp 67 char* stop = p + n; local
70 } while (p < stop);
SkPtrRecorder.cpp 12 Pair* stop = fList.end(); local
13 while (p < stop) {
  /external/skqp/src/core/
SkBuffer.cpp 61 char* stop = p + n; local
64 } while (p < stop);
SkPtrRecorder.cpp 12 Pair* stop = fList.end(); local
13 while (p < stop) {
  /external/v8/tools/testrunner/server/
daemon.py 102 def stop(self): member in class:Daemon
104 Stop the daemon
140 self.stop()
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
VideoSource.java 32 * Java version of VideoSourceInterface, extended with stop/restart
44 // Stop capture feeding this source.
45 public void stop() { method in class:VideoSource
46 stop(nativeSource);
49 // Restart capture feeding this source. stop() must have been called since
61 private static native void stop(long nativeSource); method in class:VideoSource
  /external/webrtc/webrtc/tools/loopback_test/
stat_tracker.js 20 // tracker.stop();
23 // sample taken until stop() was called.
54 this.stop = function() { method in class:StatTracker

Completed in 1533 milliseconds

1 23 4 5 6 7 8 91011>>