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

<<11121314151617181920>>

  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
IntegrationTestBase.java 69 this.testServer.stop();
  /external/parameter-framework/upstream/remote-processor/
RemoteProcessorServer.cpp 49 stop();
76 bool CRemoteProcessorServer::stop() function in class:CRemoteProcessorServer
78 _io_service.stop();
  /external/python/cpython2/Lib/
audiodev.py 59 self.stop()
71 self.stop()
73 def stop(self): member in class:Play_Audio_sgi
163 self.stop()
202 self.stop()
204 def stop(self): member in class:Play_Audio_sun
  /external/python/cpython2/Lib/plat-mac/
Audio_mac.py 19 self.stop()
29 def stop(self, quietNow = 1): member in class:Play_Audio_mac
  /external/skia/src/core/
SkUtils.cpp 93 const char* stop = utf8 + byteLength; local
95 while (utf8 < stop) {
98 if (!utf8_type_is_valid_leading_byte(type) || utf8 + type > stop) {
272 const uint16_t* stop = src + (byteLength >> 1);
274 while (src < stop) {
278 if (src >= stop) {
358 const uint16_t* stop = utf16 + numberOf16BitValues;
362 while (utf16 < stop) {
367 while (utf16 < stop) {
391 const uint32_t* stop = ptr + (byteLength >> 2)
    [all...]
  /external/skqp/src/core/
SkUtils.cpp 93 const char* stop = utf8 + byteLength; local
95 while (utf8 < stop) {
98 if (!utf8_type_is_valid_leading_byte(type) || utf8 + type > stop) {
272 const uint16_t* stop = src + (byteLength >> 1);
274 while (src < stop) {
278 if (src >= stop) {
358 const uint16_t* stop = utf16 + numberOf16BitValues;
362 while (utf16 < stop) {
367 while (utf16 < stop) {
391 const uint32_t* stop = ptr + (byteLength >> 2)
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
resolve_constant_strided_slice.cc 45 int stop; local
48 stop = input_shape.dims(axis);
51 stop = op.stop_indices[axis];
52 if (stop < 0) {
54 stop += input_shape.dims(axis);
57 return stop;
96 // (becomes greater than the stop), that digit is reset and a carry flag is
  /frameworks/av/cmds/stagefright/
SineSource.cpp 24 stop();
40 status_t SineSource::stop() { function in class:android::SineSource
  /frameworks/av/media/libstagefright/
MediaMuxer.cpp 143 status_t MediaMuxer::stop() { function in class:android::MediaMuxer
149 if (mTrackList[i]->stop() != OK) {
153 return mWriter->stop();
155 ALOGE("stop() is called in invalid state %d", mState);
  /frameworks/av/media/libstagefright/include/media/stagefright/
MPEG2TSWriter.h 39 virtual status_t stop() { return reset(); } function in struct:android::MPEG2TSWriter
  /frameworks/av/media/libstagefright/rtsp/
VideoSource.h 53 virtual status_t stop() { function in class:android::VideoSource
60 // Stop returning data after 10 secs.
  /frameworks/base/core/java/android/net/
UidRange.java 31 public final int stop; field in class:UidRange
35 if (stopUid < 0) throw new IllegalArgumentException("Invalid stop UID.");
38 stop = stopUid;
50 return start <= uid && uid <= stop;
57 return 1 + stop - start;
64 return start <= other.start && other.stop <= stop;
71 result = 31 * result + stop;
82 return start == other.start && stop == other.stop;
    [all...]
  /frameworks/base/libs/hwui/thread/
TaskManager.cpp 56 void TaskManager::stop() { function in class:android::uirenderer::TaskManager
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
StopWatchMap.java 51 public void stop() { method in class:StopWatch
54 "Calling stop with StopWatch already stopped");
90 public void stop(String stopWatchName) { method in class:StopWatchMap
96 "Calling stop with unknown stopWatchName: " + stopWatchName);
98 mStopWatches.get(stopWatchName).stop();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderStopStateUnitTest.java 27 * MediaRecorder.stop() method can be called.
35 * 1. It is valid to call stop() in the following states:
37 * 2. It is invalid to call stop() in the following states:
66 recorder.stop();
76 return "stop()";
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseDream.java 52 mView.stop();
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Service.java 64 public void stop() { method in class:Service
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
HapticFeedbackController.java 58 public void stop() { method in class:HapticFeedbackController
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ActiveModeManager.java 42 * Method used to stop the Manager for a give Wifi operational mode.
44 void stop(); method in interface:ActiveModeManager
  /frameworks/rs/tests/cpp_api/latency/
latency.cpp 75 struct timeval start, stop; local
85 gettimeofday(&stop, nullptr);
87 long long elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
101 gettimeofday(&stop, nullptr);
102 elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
  /frameworks/support/car/src/main/java/androidx/car/utils/
CarUxRestrictionsHelper.java 67 * <p>This method must be accompanied with a matching {@link #stop()} to avoid leak.
86 public void stop() { method in class:CarUxRestrictionsHelper
92 Log.w(TAG, "stop(); cannot unregister listener.");
101 Log.w(TAG, "stop(); cannot disconnect from Car.");
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
RecyclerViewSmoothScrollerTest.java 47 mockSmoothScroller.stop();
56 mockSmoothScroller.stop();
  /hardware/intel/common/wrs_omxil_core/utils/inc/
workqueue.h 45 /* start & stop & pause & resume work thread */
112 int stop; member in class:WorkQueue
  /hardware/interfaces/audio/core/all-versions/default/include/core/all-versions/default/
Stream.h 97 Return<Result> stop() override;
127 Return<Result> stop();
146 Return<Result> StreamMmap<T>::stop() { function in class:android::hardware::audio::AUDIO_HAL_VERSION::implementation::StreamMmap
147 if (mStream->stop == NULL) return Result::NOT_SUPPORTED;
148 int result = mStream->stop(mStream);
149 return Stream::analyzeStatus("stop", result);
  /hardware/qcom/gps/msm8909w_3100/android/
GnssBatching.cpp 38 mGnssBatching->stop();
109 Return<bool> GnssBatching::stop() { function in class:android::hardware::gnss::V1_0::implementation::GnssBatching

Completed in 1177 milliseconds

<<11121314151617181920>>