HomeSort by relevance Sort by last modified time
    Searched refs:strm (Results 326 - 350 of 422) sorted by null

<<11121314151617

  /external/squashfs-tools/squashfs-tools/
xz_wrapper.c 383 static int xz_init(void **strm, int block_size, int datablock)
392 stream = *strm = malloc(sizeof(struct xz_stream));
436 static int xz_compress(void *strm, void *dest, void *src, int size,
441 struct xz_stream *stream = strm;
  /external/lldb/source/API/
SBAddress.cpp 233 Stream &strm = description.ref(); local
236 m_opaque_ap->Dump (&strm,
244 // strm.Printf (" (%s)", sstrm.GetData());
247 strm.PutCString ("No value");
SBSymbolContext.cpp 261 Stream &strm = description.ref(); local
265 m_opaque_ap->GetDescription (&strm, lldb::eDescriptionLevelFull, NULL);
268 strm.PutCString ("No value");
  /external/lldb/source/Interpreter/
PythonDataObjects.cpp 45 PythonObject::Dump (Stream &strm) const
60 strm.Write (file_contents.data(), length_read);
66 strm.PutCString ("NULL");
OptionValue.cpp 566 OptionValue::DumpQualifiedName (Stream &strm) const
572 if (m_parent_sp->DumpQualifiedName(strm))
579 strm.PutChar('.');
582 strm << name;
  /external/openfst/src/include/fst/
flags.h 176 std::ostringstream strm; local
177 strm << default_value;
178 return strm.str();
  /external/openfst/src/include/fst/script/
compile-impl.h 189 istringstream strm(s);
190 strm >> w;
191 if (!strm || (!allow_zero && w == Weight::Zero())) {
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 98 SkStream* strm = CreateJavaInputStreamAdaptor(env, istream, byteArray); local
99 if (NULL == strm) {
107 // bufferedStream takes ownership of strm
108 SkAutoTDelete<SkStreamRewindable> bufferedStream(SkFrontBufferedStream::Create(strm, 6));
YuvToJpegEncoder.cpp 226 SkWStream* strm = CreateJavaOutputStreamAdaptor(env, jstream, jstorage); local
233 encoder->encode(strm, yuv, width, height, imgOffsets, jpegQuality);
241 delete strm;
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteRegisterContext.cpp 252 StreamString strm; local
253 gdb_comm.DumpHistory(strm);
254 Host::SetCrashDescription (strm.GetData());
262 StreamString strm;
263 gdb_comm.DumpHistory(strm);
264 log->Printf("error: failed to get packet sequence mutex, not sending read register for \"%s\":\n%s", reg_info->name, strm.GetData());
476 StreamString strm; local
477 gdb_comm.DumpHistory(strm);
478 log->Printf("error: failed to get packet sequence mutex, not sending write register for \"%s\":\n%s", reg_info->name, strm.GetData());
548 StreamString strm; local
681 StreamString strm; local
    [all...]
GDBRemoteCommunication.cpp 84 GDBRemoteCommunication::History::Dump (lldb_private::Stream &strm) const
95 strm.Printf ("history[%u] tid=0x%4.4" PRIx64 " <%4u> %s packet: %s\n",
643 GDBRemoteCommunication::DumpHistory(Stream &strm)
645 m_history.Dump (strm);
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformRemoteiOS.cpp 190 PlatformRemoteiOS::GetStatus (Stream &strm)
192 Platform::GetStatus (strm);
195 strm.Printf (" SDK Path: \"%s\"\n", sdk_directory);
197 strm.PutCString (" SDK Path: error: unable to locate SDK\n");
203 strm.Printf (" SDK Roots: [%2u] \"%s\"\n",
PlatformDarwinKernel.h 84 GetStatus (lldb_private::Stream &strm);
PlatformRemoteiOS.h 82 GetStatus (lldb_private::Stream &strm);
  /external/skia/third_party/ktx/
ktx.cpp 101 bool SkKTXFile::KeyValue::writeKeyAndValueForKTX(SkWStream* strm) {
103 if (!strm->write(&(this->fDataSz), 4)) {
115 if (!strm->write(this->fKey.c_str(), keySize)) {
122 if (!strm->write(this->fValue.c_str(), valueSize)) {
134 return strm->write(nullBuf, padding);
  /external/lldb/source/Core/
Address.cpp 141 DumpUInt (ExecutionContextScope *exe_scope, const Address &address, uint32_t byte_size, Stream* strm)
155 data.Dump (strm,
173 ReadCStringFromMemory (ExecutionContextScope *exe_scope, const Address &address, Stream *strm)
186 strm->PutChar ('"');
195 data.Dump (strm,
212 strm->PutChar ('"');
749 StreamString strm; local
750 if (dereferenced_addr.Dump (&strm, exe_scope, DumpStyleResolvedDescription, DumpStyleInvalid, addr_size))
753 s->Write(strm.GetData(), strm.GetSize())
    [all...]
  /external/lldb/source/Target/
Thread.cpp     [all...]
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 43 std::stringstream strm; local
44 strm << t;
45 return strm.str();
  /external/lldb/include/lldb/Target/
Thread.h 452 DumpUsingSettingsFormat (Stream &strm, uint32_t frame_idx);
891 GetStatus (Stream &strm,
897 GetStackFrameStatus (Stream& strm,
    [all...]
  /external/lldb/source/Plugins/OperatingSystem/Python/
OperatingSystemPython.cpp 197 StreamString strm; local
198 threads_list.Dump(strm);
199 log->Printf("threads_list = %s", strm.GetString().c_str());
  /external/bzip2/
decompress.c 54 if (s->strm->avail_in == 0) RETURN(BZ_OK); \
58 (*((UChar*)(s->strm->next_in)))); \
60 s->strm->next_in++; \
61 s->strm->avail_in--; \
62 s->strm->total_in_lo32++; \
63 if (s->strm->total_in_lo32 == 0) \
64 s->strm->total_in_hi32++; \
111 bz_stream* strm = s->strm; local
  /external/lldb/include/lldb/Interpreter/
OptionValueString.h 137 DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask);
PythonDataObjects.h 94 Dump (Stream &strm) const;
  /external/lldb/source/Plugins/Platform/FreeBSD/
PlatformFreeBSD.cpp 637 PlatformFreeBSD::GetStatus (Stream &strm)
642 strm << "FreeBSD";
646 strm << "Host: " << un.sysname << ' ' << un.release << ' ' << un.version << '\n';
647 Platform::GetStatus(strm);
PlatformFreeBSD.h 153 GetStatus (lldb_private::Stream &strm);

Completed in 637 milliseconds

<<11121314151617