Searched refs:wrap (Results 1 - 25 of 182) sorted by path

12345678

/frameworks/av/include/media/stagefright/
H A DRemoteDataSource.h30 static sp<IDataSource> wrap(const sp<DataSource> &source) { function in class:android::RemoteDataSource
/frameworks/av/media/libstagefright/
H A DDataSource.cpp201 return RemoteDataSource::wrap(sp<DataSource>(this));
/frameworks/av/media/libstagefright/foundation/include/
H A DRemoteDataSource.h30 static sp<IDataSource> wrap(const sp<DataSource> &source) { function in class:android::RemoteDataSource
/frameworks/av/media/libstagefright/include/
H A DRemoteDataSource.h30 static sp<IDataSource> wrap(const sp<DataSource> &source) { function in class:android::RemoteDataSource
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.cpp33 void *WebmFrameThread::wrap(void *arg) { function in class:android::WebmFrameThread
44 if ((err = pthread_create(&mThread, &attr, WebmFrameThread::wrap, this))) {
H A DWebmFrameThread.h42 static void *wrap(void *arg);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSocket.java647 ByteBuffer bb = ByteBuffer.wrap(sig);
672 mL2capBuffer = ByteBuffer.wrap(new byte[mMaxRxPacketSize]);
699 ByteBuffer bb = ByteBuffer.wrap(ibytes);
H A DBluetoothUuid.java254 ByteBuffer buf = ByteBuffer.wrap(uuidBytes).order(ByteOrder.LITTLE_ENDIAN);
313 ByteBuffer buf = ByteBuffer.wrap(uuidBytes).order(ByteOrder.LITTLE_ENDIAN);
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeAdvertiser.java421 IAdvertisingSetCallback wrapped = wrap(callback, handler);
527 IAdvertisingSetCallback wrap(AdvertisingSetCallback callback, Handler handler) { method in class:BluetoothLeAdvertiser
H A DPeriodicAdvertisingManager.java152 IPeriodicAdvertisingCallback wrapped = wrap(callback, handler);
196 private IPeriodicAdvertisingCallback wrap(PeriodicAdvertisingCallback callback, Handler handler) { method in class:PeriodicAdvertisingManager
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java501 ByteBuffer buffer = ByteBuffer.wrap(values).order(ByteOrder.nativeOrder());
992 ByteBuffer buffer = ByteBuffer.wrap(values).order(ByteOrder.nativeOrder());
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java98 IInputMethodSessionWrapper wrap =
100 mCb.sessionCreated(wrap);
/frameworks/base/core/java/android/nfc/
H A DNdefMessage.java96 ByteBuffer buffer = ByteBuffer.wrap(data);
H A DNdefRecord.java590 ByteBuffer buffer = ByteBuffer.wrap(data);
/frameworks/base/core/java/android/os/
H A DPowerManager.java1484 * mHandler.post(mWakeLock.wrap(() -> {
1495 public Runnable wrap(Runnable r) { method in class:PowerManager.WakeLock
/frameworks/base/core/java/android/speech/tts/
H A DFileSynthesisCallback.java185 fileChannel.write(ByteBuffer.wrap(buffer, offset, length));
292 ByteBuffer header = ByteBuffer.wrap(headerBuf);
/frameworks/base/core/java/android/text/
H A DTextDirectionHeuristics.java149 return isRtl(CharBuffer.wrap(array), start, count);
/frameworks/base/core/java/android/text/format/
H A DTimeFormatter.java133 CharBuffer formatBuffer = CharBuffer.wrap(pattern);
/frameworks/base/core/java/android/text/style/
H A DCharacterStyle.java32 * regions, you can use this method to wrap it with a new object that
36 public static CharacterStyle wrap(CharacterStyle cs) { method in class:CharacterStyle
46 * that were generated by {@link #wrap}, returns the underlying
/frameworks/base/core/java/android/util/
H A DEventLog.java86 mBuffer = ByteBuffer.wrap(data);
H A DExceptionUtils.java33 public static RuntimeException wrap(IOException e) { method in class:ExceptionUtils
/frameworks/base/core/java/android/util/jar/
H A DStrictJarManifest.java299 CharBuffer cBuf = CharBuffer.wrap(value);
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java131 * Specifies if the animator should wrap from 0 to the end and vice versa
489 boolean wrap = false;
491 wrap = true;
500 if (!wrap && (index < rangeStart || index > rangeEnd)) {
502 } else if (wrap && (index > rangeEnd && index < rangeStart)) {
548 // We wrap the new view in a FrameLayout so as to respect the contract
/frameworks/base/core/java/com/android/internal/util/
H A DFastPrintWriter.java362 CharBuffer charBuffer = CharBuffer.wrap(mText, 0, mPos);
H A DFastXmlSerializer.java242 CharBuffer charBuffer = CharBuffer.wrap(mText, 0, mPos);

Completed in 352 milliseconds

12345678