Searched defs:start (Results 426 - 450 of 555) sorted by relevance

<<11121314151617181920>>

/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp1060 const char* start = str; local
1064 size_t len = cur - start;
1068 && strncmp(modifiers[i].label, start, len) == 0) {
1083 start = cur + 1;
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java101 public static void start(Context context) { method in class:SipService
105 if (DBG) slog("start:");
389 mSipKeepAliveProcessCallback.start();
533 mAutoRegistration.start(mSipGroup);
647 public void start() { method in class:SipService.SipKeepAliveProcessCallback
656 // Don't start measurement if the interval is too small
658 if (SKAI_DBG) log("start: measurement aborted; interval=[" +
664 if (SKAI_DBG) log("start: interval=" + mInterval);
813 public void start(SipSessionGroup group) { method in class:SipService.SipAutoReg
822 // start unregistratio
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp77 // both sides before start forwarding. To solve these problems, we send out a
514 bool start() function in class:__anon1526::AudioGroup::NetworkThread
517 ALOGE("cannot start network thread");
534 bool start() function in class:__anon1526::AudioGroup::DeviceThread
537 ALOGE("cannot start device thread");
649 return (mode == ON_HOLD) || mDeviceThread->start();
689 if (!mNetworkThread->start()) {
716 // Do not start network thread if there is only one stream.
717 if (!mChain->mNext || !mNetworkThread->start()) {
867 record->start();
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DSIMRecords.java370 * if the number is start with '+', then set to international TOA
1699 * @param start set true only for initialize loading
1704 private void getSpnFsm(boolean start, AsyncResult ar) { argument
1707 if (start) {
/frameworks/rs/driver/runtime/
H A Drs_cl.c796 extern float __attribute__((overloadable)) mix(float start, float stop, float amount) { argument
797 return start + (stop - start) * amount;
799 extern float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount) { argument
800 return start + (stop - start) * amount;
802 extern float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount) { argument
803 return start + (stop - start) * amount;
805 extern float4 __attribute__((overloadable)) mix(float4 start, float argument
808 mix(float2 start, float2 stop, float amount) argument
811 mix(float3 start, float3 stop, float amount) argument
814 mix(float4 start, float4 stop, float amount) argument
[all...]
/frameworks/rs/
H A DrsFont.cpp162 uint32_t start, int32_t numGlyphs,
184 size_t index = start;
161 renderUTF(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t start, int32_t numGlyphs, RenderMode mode, Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
/frameworks/support/v4/java/android/support/v4/widget/
H A DAutoScrollHelper.java169 /** Whether to start activation immediately. */
172 /** Whether to reset the scroller start time on the next animation. */
405 * Specifying a delay of zero will start auto-scrolling immediately after
474 // be, then update the state and start animations.
517 // If we start animating again before the user lifts their finger, we
693 mScroller.start();
762 public void start() { method in class:AutoScrollHelper.ClampedScroller
812 * starting the scroller with {@link #start()}.
819 throw new RuntimeException("Cannot compute scroll delta before calling start()");
H A DMaterialProgressDrawable.java81 * the color transition should start
177 * Set the start and end trim for the progress spinner arc.
179 * @param startAngle start angle
278 public void start() { method in class:MaterialProgressDrawable
379 // Moving the start trim only occurs in the first 50% of a
767 * If the start / end trim are offset to begin with, store them so that
777 * Reset the progress spinner to default rotation, start and end angles.
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuBuilder.java705 public int findGroupIndex(int group, int start) { argument
708 if (start < 0) {
709 start = 0;
712 for (int i = start; i < size; i++) {
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DAdapterHelperTest.java162 final int start, end, inBetweenOffset;
164 start = from;
168 start = to;
173 if (holder == null || holder.mPosition < start || holder.mPosition > end) {
848 final int start = nextInt(random, count - 1);
849 final int layoutCount = Math.max(1, nextInt(random, count - start));
850 setupBasic(count, start, layoutCount);
940 final int start = mViewHolders.get(0).getLayoutPosition();
943 start + i, mViewHolders.get(i).getLayoutPosition());
964 AdapterHelper.UpdateOp op(int cmd, int start, in argument
968 op(int cmd, int start, int count, Object payload) argument
972 addOp(int start, int count) argument
976 rmOp(int start, int count) argument
980 upOp(int start, int count, Object payload) argument
984 add(int start, int count) argument
1007 rm(int start, int count) argument
1020 up(int start, int count) argument
1027 up(int start, int count, Object payload) argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewInstrumentationTest.java344 Thread.sleep(200); //give scroller some time so start
471 protected void layoutRange(RecyclerView.Recycler recycler, int start, int end) { argument
474 Log.d(TAG, "will layout items from " + start + " to " + end);
476 int diff = end > start ? 1 : -1;
478 for (int i = start; i != end; i+=diff) {
643 public void deleteAndNotify(final int start, final int count) throws Throwable { argument
644 deleteAndNotify(new int[]{start, count});
668 public void offsetOriginalIndices(int start, int offset) { argument
669 for (int i = start; i < mItems.size(); i++) {
675 * @param start inclusiv
679 offsetOriginalIndicesBetween(int start, int end, int offset) argument
690 addAndNotify(final int start, final int count) argument
707 changeAndNotify(final int start, final int count) argument
[all...]
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp460 // thread begins in paused state, and will not reference us until start()
502 status_t AudioTrack::start() function in class:android::AudioTrack
529 // the counters are realistic (i.e. start from zero after this time).
554 status = mAudioTrack->start();
560 status = restoreTrack_l("start");
564 ALOGE("start() status %d", status);
1048 // of loop count. Historically we have not restored loop count, start, end,
1492 { // start of lock scope
1572 mAudioTrack->start();
1684 mAudioTrack->start();
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp117 // @param p Parcel that should start with a filter.
290 // in bad state, reset the state upon service start.
937 ALOGD("start Antagonizer");
938 if (ret == NO_ERROR) mAntagonizer->start();
943 status_t MediaPlayerService::Client::start() function in class:android::MediaPlayerService::Client
945 ALOGV("[%d] start", mConnId);
949 return p->start();
1252 client->mNextClient->start();
1760 status_t MediaPlayerService::AudioOutput::start() function in class:android::MediaPlayerService::AudioOutput
1762 ALOGV("start");
[all...]
H A DStagefrightRecorder.cpp98 mLooper->start();
262 // start with a clean, empty file
832 status_t StagefrightRecorder::start() { function in class:android::StagefrightRecorder
833 ALOGV("start");
865 status = mWriter->start(meta.get());
876 status = mWriter->start();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp335 void NuPlayer::start() { function in class:android::NuPlayer
675 // start pulling stale data too soon.
723 // so we can restore them on start
981 // decoder start or after a format change.
1166 // need to start the player and pause it. This branch is called
1190 // start pulling stale data too soon.
1256 // TRICKY: We rely on mRenderer being null, so that decoder does not start requesting
1277 mSource->start();
1317 mRendererLooper->start(false, false, ANDROID_PRIORITY_AUDIO);
1862 // asynchronously seeks to the start o
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp350 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO);
526 status_t MediaCodec::start() { function in class:android::MediaCodec
544 // Recover codec from previous error before retry start.
547 ALOGE("retrying start: failed to reset codec");
553 ALOGE("retrying start: failed to configure codec");
H A DOggExtractor.cpp52 virtual status_t start(MetaData *params = NULL);
238 status_t OggSource::start(MetaData * /* params */) { function in class:android::OggSource
563 // The first sample might not start at time 0; find out where by subtracting
754 // fall through, the buffer now contains the start of the packet.
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h144 mNetLooper->start(false /* runOnCallingThread */,
1415 size_t start = 0; local
1416 while (start < s.size()) {
1417 ssize_t offset = s.find(separator, start);
1420 items->push_back(AString(s, start, s.size() - start));
1424 items->push_back(AString(s, start, offset - start));
1425 start = offset + strlen(separator);
1780 // Time is now established, lets start timestampin
[all...]
/frameworks/av/services/audioflinger/
H A DEffects.cpp465 status_t AudioFlinger::EffectModule::start() function in class:android::AudioFlinger::EffectModule
H A DTracks.cpp292 status_t AudioFlinger::TrackHandle::start() { function in class:android::AudioFlinger::TrackHandle
293 return mTrack->start();
650 status_t AudioFlinger::PlaybackThread::Track::start(AudioSystem::sync_event_t event __unused, function in class:android::AudioFlinger::PlaybackThread::Track
654 ALOGV("start(%d), calling pid %d session %d",
693 // refresh fast track underruns on start because that field is never cleared
694 // by the fast mixer; furthermore, the same track can be recycled, i.e. start
701 // restore previous state if start was rejected by policy manager
962 effect->start();
1435 // queue and the start of the next output buffer that will be written.
1486 // the gap between the current output position and the proper start o
1586 void* start = head.buffer()->pointer(); local
1677 status_t AudioFlinger::PlaybackThread::OutputTrack::start(AudioSystem::sync_event_t event, function in class:android::AudioFlinger::PlaybackThread::OutputTrack
1910 status_t AudioFlinger::RecordHandle::start(int /*AudioSystem::sync_event_t*/ event, function in class:android::AudioFlinger::RecordHandle
2018 status_t AudioFlinger::RecordThread::RecordTrack::start(AudioSystem::sync_event_t event, function in class:android::AudioFlinger::RecordThread::RecordTrack
[all...]
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp926 List<camera_metadata_t*>::iterator start,
930 while (start != end) {
931 free_camera_metadata(*start);
932 start = mStreamSlot.erase(start);
925 freeBuffers( List<camera_metadata_t*>::iterator start, List<camera_metadata_t*>::iterator end) argument
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java187 * be used to start the corresponding user interface activity.
580 }.start();
623 }.start();
681 }.start();
788 }.start();
853 }.start();
905 }.start();
933 }.start();
952 }.start();
1277 }.start();
1889 public final AccountManagerFuture<Bundle> start() { method in class:AccountManager.AmsTask
2078 public Future2Task<T> start() { method in class:AccountManager.Future2Task
[all...]
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java119 void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) argument
H A DInstrumentation.java104 * {@link #start} to begin the instrumentation thread, which will then
120 * Create and start a new thread in which to run instrumentation. This new
124 public void start() { method in class:Instrumentation
129 mRunner.start();
279 * This method will start profiling if isProfiling() returns true. You should
331 * from the main application thread -- use {@link #start} to execute
362 * starts), and it does not allow you to start activities that run in a
372 * @param intent Description of the activity to start.
451 * start (returning its canned result) or let the call
472 * start (returnin
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java1210 * @param id Unique identifier of the new input method ot start.
2140 public void onExtractedSelectionChanged(int start, int end) { argument
2143 conn.setSelection(start, end);
2150 public void onExtractedDeleteText(int start, int end) { argument
2153 conn.setSelection(start, start);
2154 conn.deleteSurroundingText(0, end-start);
2161 public void onExtractedReplaceText(int start, int end, CharSequence text) { argument
2164 conn.setComposingRegion(start, end);
2172 public void onExtractedSetSpan(Object span, int start, in argument
[all...]

Completed in 9801 milliseconds

<<11121314151617181920>>