HomeSort by relevance Sort by last modified time
    Searched defs:strm (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /cts/tests/tests/permission/src/android/permission/cts/
NoSdCardWritePermissionTest.java 40 FileOutputStream strm = new FileOutputStream(fl); local
41 strm.write("Oops!".getBytes());
42 strm.flush();
43 strm.close();
  /external/lldb/source/API/
SBSymbolContextList.cpp 111 Stream &strm = description.ref(); local
113 m_opaque_ap->GetDescription (&strm, lldb::eDescriptionLevelFull, NULL);
SBFileSpecList.cpp 125 Stream &strm = description.ref(); local
130 strm.Printf ("%d files: ", num_files);
135 strm.Printf ("\n %s", path);
139 strm.PutCString ("No value");
SBDeclaration.cpp 186 Stream &strm = description.ref(); local
192 strm.Printf ("%s:%u", file_path, GetLine());
194 strm.Printf (":%u", GetColumn());
197 strm.PutCString ("No value");
SBEvent.cpp 220 Stream &strm = description.ref(); local
224 m_opaque_ptr->Dump (&strm);
227 strm.PutCString ("No value");
235 Stream &strm = description.ref(); local
239 m_opaque_ptr->Dump (&strm);
242 strm.PutCString ("No value");
SBFileSpec.cpp 176 Stream &strm = description.ref(); local
179 strm.PutCString (path);
SBSymbol.cpp 103 Stream &strm = description.ref(); local
107 m_opaque_ptr->GetDescription (&strm,
111 strm.PutCString ("No value");
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");
SBBlock.cpp 181 Stream &strm = description.ref(); local
186 strm.Printf ("Block: {id: %" PRIu64 "} ", id);
189 strm.Printf (" (inlined, '%s') ", GetInlinedName());
195 m_opaque_ptr->DumpAddressRanges (&strm,
200 strm.PutCString ("No value");
SBBreakpointLocation.cpp 270 Stream &strm = description.ref(); local
275 m_opaque_sp->GetDescription (&strm, level);
276 strm.EOL();
279 strm.PutCString ("No value");
SBCommandReturnObject.cpp 240 Stream &strm = description.ref(); local
247 strm.PutCString ("Started");
249 strm.PutCString ("Invalid");
251 strm.PutCString ("Success");
253 strm.PutCString ("Fail");
256 strm.Printf ("\nOutput Message:\n%s", GetOutput());
259 strm.Printf ("\nError Message:\n%s", GetError());
262 strm.PutCString ("No value");
SBCompileUnit.cpp 268 Stream &strm = description.ref(); local
272 m_opaque_ptr->Dump (&strm, false);
275 strm.PutCString ("No value");
SBLineEntry.cpp 230 Stream &strm = description.ref(); local
236 strm.Printf ("%s:%u", file_path, GetLine());
238 strm.Printf (":%u", GetColumn());
241 strm.PutCString ("No value");
SBSection.cpp 275 Stream &strm = description.ref(); local
281 strm.Printf ("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 ") ", file_addr, file_addr + section_sp->GetByteSize());
282 section_sp->DumpName(&strm);
286 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/llvm/lib/Support/
Debug.cpp 104 circular_raw_ostream strm; member in struct:dbgstream
107 strm(errs(), "*** Debug Log Output ***\n",
118 return thestrm.strm;
  /external/openfst/src/script/
text-io.cc 34 ifstream strm(filename.c_str());
35 if (!strm) {
45 while (strm.getline(line, kLineLen)) {
70 ostream *strm = &cout; local
72 strm = new ofstream(filename.c_str());
73 if (!*strm) {
75 delete strm;
80 strm->precision(9);
82 *strm << s << "\t" << potential[s] << "\n";
84 if (!*strm)
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
StopInfoMachException.cpp 230 StreamString strm; local
233 strm.PutCString(exc_desc);
235 strm.Printf("EXC_??? (%" PRIu64 ")", m_value);
240 strm.Printf(" (%s=%s", code_label, code_desc);
242 strm.Printf(" (%s=%" PRIu64, code_label, m_exc_code);
248 strm.Printf(", %s=%s", subcode_label, subcode_desc);
250 strm.Printf(", %s=0x%" PRIx64, subcode_label, m_exc_subcode);
254 strm.PutChar(')');
256 m_description.swap (strm.GetString());
  /external/chromium_org/third_party/zlib/
gzwrite.c 19 z_streamp strm = &(state->strm); local
34 strm->zalloc = Z_NULL;
35 strm->zfree = Z_NULL;
36 strm->opaque = Z_NULL;
37 ret = deflateInit2(strm, state->level, Z_DEFLATED,
49 strm->avail_out = state->size;
50 strm->next_out = state->out;
51 state->next = strm->next_out;
65 z_streamp strm = &(state->strm) local
117 z_streamp strm = &(state->strm); local
151 z_streamp strm; local
227 z_streamp strm; local
285 z_streamp strm; local
361 z_streamp strm; local
464 z_streamp strm; local
    [all...]
gzguts.h 114 z_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon21022
gzread.c 49 gz_avail() assumes that strm->avail_in == 0. */
53 z_streamp strm = &(state->strm); local
59 (unsigned *)&(strm->avail_in)) == -1)
61 strm->next_in = state->in;
67 #define NEXT() ((strm->avail_in == 0 && gz_avail(state) == -1) ? -1 : \
68 (strm->avail_in == 0 ? -1 : \
69 (strm->avail_in--, *(strm->next_in)++)))
79 z_streamp strm = &(state->strm) local
107 z_streamp strm = &(state->strm); local
239 z_streamp strm = &(state->strm); local
307 z_streamp strm = &(state->strm); local
369 z_streamp strm; local
    [all...]
  /external/lldb/examples/lookup/
main.cpp 176 SBStream strm; local
177 strm.RedirectToFileHandle (stdout, false);
220 strm.Printf (" Address: %s + 0x%llx\n Summary: ", addr.GetSection().GetName (), addr.GetOffset());
221 addr.GetDescription (strm);
222 strm.Printf ("\n");
224 sc.GetDescription (strm);
  /external/lldb/include/lldb/Core/
StreamTee.h 90 Stream *strm = pos->get(); local
91 if (strm)
92 strm->Flush ();
111 Stream *strm = pos->get(); local
112 if (strm)
114 const size_t bytes_written = strm->Write (s, length);
  /bootable/recovery/applypatch/
imgpatch.c 141 z_stream strm; local
142 strm.zalloc = Z_NULL;
143 strm.zfree = Z_NULL;
144 strm.opaque = Z_NULL;
145 strm.avail_in = src_len;
146 strm.next_in = (unsigned char*)(old_data + src_start);
147 strm.avail_out = expanded_len;
148 strm.next_out = expanded_source;
151 ret = inflateInit2(&strm, -15);
159 ret = inflate(&strm, Z_SYNC_FLUSH)
    [all...]
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 43 std::stringstream strm; local
44 strm << t;
45 return strm.str();

Completed in 1156 milliseconds

1 2 3 4