Searched refs:start (Results 201 - 225 of 1131) sorted by relevance

1234567891011>>

/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetServiceImpl.java88 public void start() { method in class:EthernetServiceImpl
92 handlerThread.start();
95 mTracker.start(mContext, mHandler);
133 mTracker.start(mContext, mHandler);
/frameworks/rs/cpu_ref/linkloader/include/
H A DmmanWindows.h50 extern int mincore(void* start, size_t length, unsigned char* vec);
/frameworks/rs/driver/
H A DrsdMeshObj.h41 uint32_t primIndex, size_t start, uint32_t len) const;
/frameworks/av/services/audioflinger/
H A Dtest-resample.cpp348 timespec start, end; local
349 clock_gettime(CLOCK_MONOTONIC, &start);
357 int64_t start_ns = start.tv_sec * 1000000000LL + start.tv_nsec;
368 clock_gettime(CLOCK_MONOTONIC, &start);
373 start_ns = start.tv_sec * 1000000000LL + start.tv_nsec;
409 timespec start, end; local
413 clock_gettime(CLOCK_MONOTONIC, &start);
419 int64_t start_ns = start
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRipple.java88 // Values used to tween between the start and end positions.
317 radius.start();
318 cX.start();
319 cY.start();
352 // The animation will start on the next draw().
379 radiusAnim.start();
385 xAnim.start();
391 yAnim.start();
399 opacityAnim.start();
483 radiusAnim.start();
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsRecorder.java136 public NetworkStatsCollection getOrLoadPartialLocked(long start, long end) { argument
139 res = loadLocked(start, end);
144 private NetworkStatsCollection loadLocked(long start, long end) { argument
148 mRotator.readMatching(res, start, end);
183 final long start = end - delta.getElapsedRealtime();
199 mPending.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
203 mSinceBoot.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
208 complete.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
355 // legacy file still exists; start empty to avoid double importing
373 // legacy file still exists; start empt
401 dumpCheckin(PrintWriter pw, long start, long end) argument
[all...]
H A DNetworkStatsCollection.java148 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) {
157 combined.recordHistory(value, start, end);
167 public NetworkStats getSummary(NetworkTemplate template, long start, long end) { argument
170 final NetworkStats stats = new NetworkStats(end - start, 24);
175 if (start == end) return stats;
181 historyEntry = value.getValues(start, end, now, historyEntry);
205 public void recordData(NetworkIdentitySet ident, int uid, int set, int tag, long start, argument
208 history.recordData(start, end, entry);
491 public void dumpCheckin(PrintWriter pw, long start, long end) { argument
492 dumpCheckin(pw, start, en
147 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) argument
502 dumpCheckin(PrintWriter pw, long start, long end, NetworkTemplate groupTemplate, String groupPrefix) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Djpeg.cpp25 static inline uint8_t from565to8(uint16_t p, int start, int bits) { argument
26 uint8_t c = (p >> start) & ((1 << bits) - 1);
/frameworks/av/include/media/stagefright/
H A DMPEG2TSWriter.h39 virtual status_t start(MetaData *param = NULL);
83 uint32_t crc32(const uint8_t *start, size_t length);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_PutVLCBits.c58 * [in] start start indicates whether the encoding begins with
105 OMX_U8 start,
128 for (i = start, run=0; i < 64; i++)
100 armVCM4P2_PutVLCBits( OMX_U8 **ppBitStream, OMX_INT * pBitOffset, const OMX_S16 *pQDctBlkCoef, OMX_INT shortVideoHeader, OMX_U8 start, OMX_U8 maxStoreRunL0, OMX_U8 maxStoreRunL1, OMX_U8 maxRunForMultipleEntriesL0, OMX_U8 maxRunForMultipleEntriesL1, const OMX_U8 * pRunIndexTableL0, const ARM_VLC32 *pVlcTableL0, const OMX_U8 * pRunIndexTableL1, const ARM_VLC32 *pVlcTableL1, const OMX_U8 * pLMAXTableL0, const OMX_U8 * pLMAXTableL1, const OMX_U8 * pRMAXTableL0, const OMX_U8 * pRMAXTableL1, const OMX_U8 * pZigzagTable ) argument
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DBurstCapture.cpp41 status_t BurstCapture::start(Vector<CameraMetadata> &/*metadatas*/, function in class:android::camera2::BurstCapture
95 jpeg->start(buffers, 1);
/frameworks/base/core/java/android/net/http/
H A DConnectionThread.java122 long start = mCurrentThreadTime;
124 mTotalThreadTime += mCurrentThreadTime - start;
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java37 public void start() { method in class:AudioPlaybackHandler
38 mHandlerThread.start();
/frameworks/base/core/java/android/text/style/
H A DDrawableMarginSpan.java43 CharSequence text, int start, int end,
57 public void chooseHeight(CharSequence text, int start, int end, argument
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DDynamicDrawableSpan.java75 int start, int end,
93 int start, int end, float x,
74 getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) argument
92 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java63 * @param start the beginning of the range of text (inclusive).
68 public TextInfo(CharSequence charSequence, int start, int end, int cookie, int sequenceNumber) { argument
74 new SpannableStringBuilder(charSequence, start, end);
/frameworks/base/include/android_runtime/
H A DAndroidRuntime.h67 void start(const char *classname, const Vector<String8>& options);
104 static android_thread_id_t createJavaThread(const char* name, void (*start)(void *),
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAbstractLayoutTest.java57 long start = System.currentTimeMillis();
69 Log.d(tag(), "Time: " + (float) (System.currentTimeMillis() - start) / N * 1000 + "mics");
/frameworks/native/services/surfaceflinger/
H A DDdmConnection.cpp28 DdmConnection::start(name);
31 void DdmConnection::start(const char* name) { function in class:android::DdmConnection
35 // start a VM
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryCommitter.java70 final long start = System.currentTimeMillis();
78 mTimeToCommit += System.currentTimeMillis() - start;
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java209 float start, float end, float terminalValue, TimeInterpolator interpolator,
213 start = View.TRANSLATION_Y == property ? startPosition[1] : startPosition[0];
216 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, property, start, end);
235 float start = mSlideCalculator.getGone(view);
236 return createAnimation(view, mSlideCalculator.getProperty(), start, end, end, sDecelerate,
248 float start = mSlideCalculator.getHere(view);
251 return createAnimation(view, mSlideCalculator.getProperty(), start, end, start,
208 createAnimation(final View view, Property<View, Float> property, float start, float end, float terminalValue, TimeInterpolator interpolator, int finalVisibility) argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DViewPropertyAnimatorCompatSet.java54 public void start() { method in class:ViewPropertyAnimatorCompatSet
66 animator.start();
/frameworks/base/core/java/android/gesture/
H A DGestureStore.java229 long start;
231 start = SystemClock.elapsedRealtime();
262 Log.d(LOG_TAG, "Saving gestures library = " + (end - start) + " ms");
284 long start;
286 start = SystemClock.elapsedRealtime();
299 Log.d(LOG_TAG, "Loading gestures library = " + (end - start) + " ms");
/frameworks/base/core/java/android/widget/
H A DViewAnimator.java231 public void removeViews(int start, int count) { argument
232 super.removeViews(start, count);
236 } else if (mWhichChild >= start && mWhichChild < start + count) {
242 public void removeViewsInLayout(int start, int count) { argument
243 removeViews(start, count);
/frameworks/base/core/java/android/transition/
H A DTransition.java206 // in the start scene, which are no longer in the view hierarchy. This property
218 // determined by calls to start() and end()
235 // The function for calculating the Animation start delay.
407 * then the old animation is canceled since the new transition will start a new
427 * earlier for the start and end scenes. Subclasses of Transition should override
432 * topmost Transition in the hierarchy) with the sceneRoot and start/end
439 * delay between that start and the child Transition start time. For
448 * the transition needs to run on the given target and start/end values.
450 * to avoid running for views which are not present in either the start
1409 captureValues(ViewGroup sceneRoot, boolean start) argument
1517 clearValues(boolean start) argument
1543 captureHierarchy(View view, boolean start) argument
1607 getTransitionValues(View view, boolean start) argument
1860 protected void start() { method in class:Transition
[all...]

Completed in 746 milliseconds

1234567891011>>