Searched refs:start (Results 1 - 25 of 857) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp33 * @param offset offset in bytes relative to data of where the frame is supposed to start
132 // Initialize the PCM format info with the known parameters before the start of the decode
177 if (source->start() != OK) {
178 SL_LOGE("AacBqToPcmCbRenderer::onPrepare() Failed to start source/decoder.");
H A DAudioRecorder_to_android.cpp463 ar->mAudioRecord->start();
H A Dandroid_AudioSfDecoder.cpp169 // Initialize the PCM format info with the known parameters before the start of the decode
314 if (source->start() != OK) {
315 SL_LOGE("AudioSfDecoder::onPrepare: Failed to start source/decoder.");
404 //SL_LOGV("AudioSfDecoder::onLoop start looping");
H A Dandroid_GenericMediaPlayer.cpp102 _(MEDIA_INFO_BUFFERING_START, "Buffering start")
357 mPlayer->start();
H A Dandroid_GenericPlayer.cpp73 mLooper->start(false /*runOnCallingThread*/, false /*canCallJava*/, PRIORITY_DEFAULT);
162 // after a stop, playback should resume from the start.
/frameworks/wilhelm/src/android/include/
H A DAacAdtsExtractor.h46 virtual status_t start(MetaData *params = NULL);
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp229 status_t AacAdtsSource::start(MetaData *params) { function in class:android::AacAdtsSource
/frameworks/wilhelm/src/
H A Dlocks.c202 // FIXME hack to safely handle a post-unlock PrefetchStatus callback and/or AudioTrack::start()
248 // call AudioTrack::start() while not holding the mutex on AudioPlayer
250 audioTrack->start();
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DNativeMedia.java138 mediaPlayer.start();
218 // Java MediaPlayer start/pause
242 mMediaPlayer.start();
248 // native MediaPlayer start/pause
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DAndroidJUnitRunner.java190 start();
350 * send a status for the start of a each test, so long tests can be seen
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java122 long start = SystemClock.uptimeMillis();
123 while ((SystemClock.uptimeMillis() - start) < WAIT_TIME_FROM_IDLE_TO_BUSY_STATE) {
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestRunner.java85 start();
92 protected void start() { method in class:UiAutomatorTestRunner
229 * send a status for the start of a each test, so long tests can be seen
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DRenderScript.java762 rs.mMessageThread.start();
/frameworks/support/renderscript/v8/rs_support/
H A Drs_hal.h244 void (*draw)(const Context *rsc, const Mesh *m, uint32_t primIndex, uint32_t start, uint32_t len);
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_cl.rsh819 * return start + ((stop - start) * amount);
823 _RS_RUNTIME float __attribute__((overloadable)) mix(float start, float stop, float amount);
H A Drs_graphics.rsh341 * @param start starting index in the range
345 rsgDrawMesh(rs_mesh ism, uint primitiveIndex, uint start, uint len);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java256 * entries start index 0 being the bottom of the stack.
733 static Animation makeFadeAnimation(Context context, float start, float end) { argument
734 AlphaAnimation anim = new AlphaAnimation(start, end);
821 // Defer start if requested; don't allow it to move to STARTED or higher
H A DLoaderManager.java49 * @return Return a new Loader instance that is ready to start loading.
234 void start() { method in class:LoaderManagerImpl.LoaderInfo
510 // The activity will start all existing loaders in it's onStart(),
511 // so only start them here if we're past that point of the activitiy's
513 info.start();
577 * actually start it until some previous loaders have completed.
711 // Call out to sub classes so they can start their loaders
714 mLoaders.valueAt(i).start();
H A DShareCompat.java97 int start, int end) {
98 for (int i = start; i < end; i++) {
666 * used to start the given activity.
96 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java121 // Log.e("SparseArray", "gc start with " + mSize);
334 private static int binarySearch(long[] a, int start, int len, long key) { argument
335 int high = start + len, low = start - 1, guess;
346 if (high == start + len)
347 return ~(start + len);
H A DSparseArrayCompat.java114 // Log.e("SparseArray", "gc start with " + mSize);
325 private static int binarySearch(int[] a, int start, int len, int key) { argument
326 int high = start + len, low = start - 1, guess;
337 if (high == start + len)
338 return ~(start + len);
H A DTimeUtils.java135 int start = pos;
138 pos = printField(formatStr, hours, 'h', pos, pos != start, zeropad ? 2 : 0);
139 pos = printField(formatStr, minutes, 'm', pos, pos != start, zeropad ? 2 : 0);
140 pos = printField(formatStr, seconds, 's', pos, pos != start, zeropad ? 2 : 0);
141 pos = printField(formatStr, millis, 'm', pos, true, (zeropad && pos != start) ? 3 : 0);
/frameworks/support/v7/gridlayout/gen/android/support/v7/gridlayout/
H A DR.java118 <tr><td><code>start</code></td><td>0x00800003</td><td> Push object to the beginning of its container, not changing its size. </td></tr>
234 public static int start=0x7f020010; field in class:R.id
637 <tr><td><code>start</code></td><td>0x00800003</td><td> Push object to the beginning of its container, not changing its size. </td></tr>
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java629 private static boolean fits(int[] a, int value, int start, int end) { argument
633 for (int i = start; i < end; i++) {
641 private static void procrusteanFill(int[] a, int start, int end, int value) { argument
643 Arrays.fill(a, Math.min(start, length), Math.min(end, length), value);
2291 private Spec(boolean startDefined, int start, int size, Alignment alignment) { argument
2292 this(startDefined, new Interval(start, start + size), alignment);
2350 * <li> {@code spec.span = [start, start + size]} </li>
2354 * @param start th
2358 spec(int start, int size, Alignment alignment) argument
2372 spec(int start, Alignment alignment) argument
2385 spec(int start, int size) argument
2397 spec(int start) argument
[all...]
/frameworks/support/volley/src/com/android/volley/
H A DRequestQueue.java72 /** Number of network request dispatcher threads to start. */
91 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
107 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
119 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
131 public void start() { method in class:RequestQueue
133 // Create the cache dispatcher and start it.
135 mCacheDispatcher.start();
142 networkDispatcher.start();

Completed in 374 milliseconds

1234567891011>>