Searched refs:length (Results 1 - 25 of 1912) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h442 XAuint32 length; member in struct:XADataLocator_Address_
H A DOpenMAXAL_Android.h166 XAAint64 length; member in struct:XADataLocator_AndroidFD_
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h268 SLuint32 length; member in struct:SLDataLocator_Address_
2028 SLuint32 length,
2038 SLuint32 length,
2048 SLuint32 length
H A DOpenSLES_Android.h330 SLAint64 length; member in struct:SLDataLocator_AndroidFD_
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1602 (int64_t)pAudioPlayer->mDataSource.mLocator.mFD.length);
1644 (int64_t)pAudioPlayer->mDataSource.mLocator.mFD.length);
H A DMediaPlayer_to_android.cpp441 (int64_t)mp->mDataSource.mLocator.mFD.length);
H A Dandroid_AudioSfDecoder.cpp212 dataSource = new FileSource(fd, mDataLocator.fdi.offset, mDataLocator.fdi.length);
498 // FIXME workaround apparent bug in AAC decoder: kKeyTime is 3 frames old if length is 0
H A Dandroid_GenericPlayer.cpp101 void GenericPlayer::setDataSource(int fd, int64_t offset, int64_t length, bool closeAfterUse) { argument
102 SL_LOGV("GenericPlayer::setDataSource(fd=%d, offset=%lld, length=%lld, closeAfterUse=%s)", fd,
103 offset, length, closeAfterUse ? "true" : "false");
121 if (PLAYER_FD_FIND_FILE_SIZE == length) {
122 mDataLocator.fdi.length = sb.st_size;
123 } else if (offset + length > sb.st_size) {
124 mDataLocator.fdi.length = sb.st_size - offset;
126 mDataLocator.fdi.length = length;
H A Dandroid_GenericPlayer.h67 void setDataSource(int fd, int64_t offset, int64_t length, bool closeAfterUse = false);
H A Dandroid_LocAVPlayer.cpp71 mDataLocator.fdi.length) != NO_ERROR) {
H A Dandroid_StreamPlayer.cpp87 SLAint64 length = (SLAint64) mem->size();
H A Dandroid_defs.h195 int64_t length; member in struct:android::FdInfo
/frameworks/wilhelm/src/
H A Ddata.c39 // if length is greater than zero, then the address must be non-NULL
40 if ((0 < pDataLocator->mAddress.length) && (NULL == pDataLocator->mAddress.pAddress)) {
200 // to determine length of string to copy. It's OK if the string became shorter.
216 SL_LOGV("%s: fd=%d offset=%lld length=%lld", name, pDataLocator->mFD.fd,
217 pDataLocator->mFD.offset, pDataLocator->mFD.length);
/frameworks/wilhelm/src/itf/
H A DIMIDIMessage.c23 SLuint32 length)
22 IMIDIMessage_SendMessage(SLMIDIMessageItf self, const SLuint8 *data, SLuint32 length) argument
/frameworks/wilhelm/tests/examples/
H A DslesTestBassBoostPath.cpp124 locatorFd.length = SL_DATALOCATOR_ANDROIDFD_USE_FILE_SIZE;
H A DslesTestEqFdPath.cpp129 locatorFd.length = size;
286 fprintf(stdout, "starting at the specified offset, and using the specified length.\n");
287 fprintf(stdout, "Omit the length of the file for it to be computed by the system.\n");
H A DslesTestEqOutputPath.cpp136 locatorFd.length = size;
290 fprintf(stdout, "starting at the specified offset, and using the specified length.\n");
291 fprintf(stdout, "Omit the length of the file for it to be computed by the system.\n");
H A DslesTestPlayFdPath.cpp117 locatorFd.length = size;
199 fprintf(stdout, "starting at the specified offset, and using the specified length.\n");
200 fprintf(stdout, "Omit the length of the file for it to be computed by the system.\n");
H A DslesTestSendToPresetReverb.cpp184 locatorFd.length = SL_DATALOCATOR_ANDROIDFD_USE_FILE_SIZE;
H A DslesTestVirtualizerPath.cpp125 locatorFd.length = SL_DATALOCATOR_ANDROIDFD_USE_FILE_SIZE;
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java86 mVertices = ByteBuffer.allocateDirect(mVerticesData.length
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java1489 if (mTmpActions == null || mTmpActions.length < numActions) {
1826 mActive = new ArrayList<Fragment>(fms.mActive.length);
1830 for (int i=0; i<fms.mActive.length; i++) {
1868 mAdded = new ArrayList<Fragment>(fms.mAdded.length);
1869 for (int i=0; i<fms.mAdded.length; i++) {
1888 mBackStack = new ArrayList<BackStackRecord>(fms.mBackStack.length);
1889 for (int i=0; i<fms.mBackStack.length; i++) {
H A DFragmentStatePagerAdapter.java203 for (int i=0; i<fss.length; i++) {
H A DNotificationCompat.java856 * Maximum length of CharSequences accepted by Builder and friends.
1537 if (cs.length() > MAX_CHARSEQUENCE_LENGTH) {
2145 public Action[] newArray(int length) {
2146 return new Action[length];
3108 return mParticipants.length > 0 ? mParticipants[0] : null;
3239 Notification[] typedArray = new Notification[array.length];
3240 for (int i = 0; i < array.length; i++) {
H A DNotificationManagerCompat.java240 Set<String> packageNames = new HashSet<String>(components.length);

Completed in 736 milliseconds

1234567891011>>