Searched defs:stream (Results 1 - 25 of 205) sorted by last modified time

123456789

/frameworks/wilhelm/src/desktop/
H A DSDL.cpp24 static void SDLCALL SDL_callback(void *context, Uint8 *stream, int len) argument
36 IOutputMixExt_FillBuffer(OutputMixExt, stream, (SLuint32) len);
38 memset(stream, 0, (size_t) len);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... google/gson/internal/ com/google/gson/reflect/ com/google/gson/stream/ com/google/gson/annotations/Expose.class Expose.java ...
H A Dpicasso-2.5.2.jar ... .graphics.Bitmap bitmap java.io.InputStream stream com.squareup.picasso.Request request com. ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... google/gson/internal/ com/google/gson/reflect/ com/google/gson/stream/ com/google/gson/annotations/Expose.class Expose.java ...
H A Dpicasso-2.5.2.jar ... .graphics.Bitmap bitmap java.io.InputStream stream com.squareup.picasso.Request request com. ...
/frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/
H A DMediaRouterJellybean.java232 public static void setPlaybackStream(Object routeObj, int stream) { argument
233 ((android.media.MediaRouter.UserRouteInfo)routeObj).setPlaybackStream(stream);
/frameworks/support/compat/java/android/support/v4/util/
H A DAtomicFile.java116 * Call when you have successfully finished writing to the stream
119 * will return the new file stream.
134 * Call when you have failed for some reason at writing to the stream
136 * write stream, and roll back to the previous state of the file.
176 FileInputStream stream = openRead();
179 int avail = stream.available();
182 int amt = stream.read(data, pos, data.length-pos);
191 avail = stream.available();
199 stream.close();
203 static boolean sync(FileOutputStream stream) { argument
[all...]
/frameworks/support/media-compat/api21/android/support/v4/media/session/
H A DMediaControllerCompatApi21.java223 // flags to stream type mapping
232 // usage to stream type mapping
270 public void onAudioInfoChanged(int type, int stream, int control, int max, int current); argument
H A DMediaSessionCompatApi21.java74 public static void setPlaybackToLocal(Object sessionObj, int stream) { argument
77 bob.setLegacyStreamType(stream);
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DMediaControllerCompat.java787 int type, int stream, int control, int max, int current) {
789 new PlaybackInfo(type, stream, control, max, current));
1052 * Move to a new location in the media stream.
1169 // TODO update audio stream with AudioAttributes support version
1175 PlaybackInfo(int type, int stream, int control, int max, int current) { argument
1177 mAudioStream = stream;
1197 * Get the stream this is currently controlling volume on. When the volume
1201 * @return The stream this session is playing on.
786 onAudioInfoChanged( int type, int stream, int control, int max, int current) argument
H A DMediaSessionCompat.java499 * Set the stream this session is playing on. This will affect the system's
502 * will begin sending volume changes to the appropriate stream.
506 * @param stream The {@link AudioManager} stream this session is playing on.
508 public void setPlaybackToLocal(int stream) { argument
509 mImpl.setPlaybackToLocal(stream);
515 * current stream volume for this session. If {@link #setPlaybackToLocal}
516 * was previously called that stream will stop receiving volume changes for
1770 void setPlaybackToLocal(int stream); argument
1933 public void setPlaybackToLocal(int stream) { argument
3218 setPlaybackToLocal(int stream) argument
[all...]
/frameworks/rs/
H A DrsAllocation.cpp428 void Allocation::packVec3Allocation(Context *rsc, OStream *stream) const {
436 stream->addByteArray(dst, getPackedSize());
442 void Allocation::serialize(Context *rsc, OStream *stream) const {
444 stream->addU32((uint32_t)getClassId());
445 stream->addString(getName());
449 mHal.state.type->serialize(rsc, stream);
455 stream->addU32(packedSize);
458 stream->addByteArray(rsc->mHal.funcs.allocation.lock1D(rsc, this), dataSize);
462 packVec3Allocation(rsc, stream);
466 Allocation *Allocation::createFromStream(Context *rsc, IStream *stream) { argument
[all...]
H A DrsAnimation.cpp24 void Animation::serialize(Context *rsc, OStream *stream) const {
27 Animation *Animation::createFromStream(Context *rsc, IStream *stream) { argument
H A DrsComponent.cpp259 void Component::serialize(OStream *stream) const {
260 stream->addU8((uint8_t)mType);
261 stream->addU8((uint8_t)mKind);
262 stream->addU8((uint8_t)(mNormalized ? 1 : 0));
263 stream->addU32(mVectorSize);
266 void Component::loadFromStream(IStream *stream) { argument
267 mType = (RsDataType)stream->loadU8();
268 mKind = (RsDataKind)stream->loadU8();
269 uint8_t temp = stream->loadU8();
271 mVectorSize = stream
[all...]
H A DrsElement.cpp107 void Element::serialize(Context *rsc, OStream *stream) const {
109 stream->addU32((uint32_t)getClassId());
110 stream->addString(getName());
112 mComponent.serialize(stream);
115 stream->addU32(mFieldCount);
117 stream->addString(mFields[ct].name);
118 stream->addU32(mFields[ct].arraySize);
119 mFields[ct].e->serialize(rsc, stream);
123 Element *Element::createFromStream(Context *rsc, IStream *stream) { argument
125 RsA3DClassID classID = (RsA3DClassID)stream
[all...]
H A DrsMesh.cpp81 void Mesh::serialize(Context *rsc, OStream *stream) const {
83 stream->addU32((uint32_t)getClassId());
84 stream->addString(getName());
87 stream->addU32(mHal.state.vertexBuffersCount);
89 mHal.state.vertexBuffers[vCount]->serialize(rsc, stream);
92 stream->addU32(mHal.state.primitivesCount);
95 stream->addU8((uint8_t)mHal.state.primitives[pCount]);
98 stream->addU32(1);
99 mHal.state.indexBuffers[pCount]->serialize(rsc, stream);
101 stream
106 createFromStream(Context *rsc, IStream *stream) argument
[all...]
H A DrsProgramFragment.cpp80 void ProgramFragment::serialize(Context *rsc, OStream *stream) const {
83 ProgramFragment *ProgramFragment::createFromStream(Context *rsc, IStream *stream) { argument
H A DrsProgramRaster.cpp56 void ProgramRaster::serialize(Context *rsc, OStream *stream) const {
59 ProgramRaster *ProgramRaster::createFromStream(Context *rsc, IStream *stream) { argument
H A DrsProgramStore.cpp66 void ProgramStore::serialize(Context *rsc, OStream *stream) const {
69 ProgramStore *ProgramStore::createFromStream(Context *rsc, IStream *stream) { argument
H A DrsProgramVertex.cpp150 void ProgramVertex::serialize(Context *rsc, OStream *stream) const {
153 ProgramVertex *ProgramVertex::createFromStream(Context *rsc, IStream *stream) { argument
H A DrsSampler.cpp71 void Sampler::serialize(Context *rsc, OStream *stream) const {
74 Sampler *Sampler::createFromStream(Context *rsc, IStream *stream) { argument
H A DrsScriptC.h54 virtual void serialize(Context *rsc, OStream *stream) const { }
56 static Type *createFromStream(Context *rsc, IStream *stream) { return nullptr; } argument
H A DrsType.cpp164 void Type::serialize(Context *rsc, OStream *stream) const {
166 stream->addU32((uint32_t)getClassId());
167 stream->addString(getName());
169 mElement->serialize(rsc, stream);
171 stream->addU32(mHal.state.dimX);
172 stream->addU32(mHal.state.dimY);
173 stream->addU32(mHal.state.dimZ);
175 stream->addU8((uint8_t)(mHal.state.lodCount ? 1 : 0));
176 stream->addU8((uint8_t)(mHal.state.faces ? 1 : 0));
179 Type *Type::createFromStream(Context *rsc, IStream *stream) { argument
[all...]
/frameworks/rs/script_api/
H A DGenerateDocumentation.cpp67 // If prefix starts input, copy it to stream and remove it from input.
68 static void skipPrefix(ostringstream* stream, string* input, const string& prefix) { argument
74 *stream << prefix;
98 ostringstream stream; local
99 skipPrefix(&stream, &s, "const ");
100 skipPrefix(&stream, &s, "volatile ");
111 stream << anchor;
114 stream << "*";
116 return stream.str();
120 ostringstream stream; local
246 writeSummaryTableEntry(ostream* stream, Definition* definition, DeprecatedSelector deprecatedSelector) argument
311 ostringstream stream; local
[all...]
H A DGenerateStubsWhiteList.cpp98 istringstream stream(type);
99 list<string> tokens{istream_iterator<string>{stream}, istream_iterator<string>{}};
108 istringstream stream(substitute);
129 list<string> newTokens{istream_iterator<string>{stream}, istream_iterator<string>{}};
293 // Write to the stream the mangled representation of each parameter.
294 static bool writeParameters(ostringstream* stream, const std::vector<ParameterDefinition*>& params, argument
297 *stream << "v";
317 *stream << compressedMangling;
331 ostringstream stream; local
332 stream << "_
[all...]

Completed in 4414 milliseconds

123456789