HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2226 - 2250 of 5424) sorted by null

<<81828384858687888990>>

  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
PhoneAccountTest.java 319 StringBuilder out = new StringBuilder(); local
321 out.append(str);
323 return out.toString();
  /cts/tests/tests/security/src/android/security/cts/
OpenSSLEarlyCCSTest.java 382 OutputStream out,
399 out,
416 OutputStream out,
439 out.write(createChangeCipherSpecRecord(record.versionMajor, record.versionMinor));
440 out.flush();
446 out.write(recordBytes);
447 out.flush();
  /cts/tests/tests/telecom/src/android/telecom/cts/
TestUtils.java 202 StringBuilder out = new StringBuilder(); local
204 out.append(str);
206 return out.toString();
  /cts/tests/tests/telephony/src/android/telephony/cts/
VisualVoicemailServiceTest.java 707 StringBuilder out = new StringBuilder(); local
709 out.append(string);
711 return out.toString();
  /dalvik/tools/hprof-conv/
HprofConv.c 18 * Strip Android-specific records out of hprof data, back-converting from
261 static int ebWriteData(ExpandBuf* pBuf, FILE* out)
268 actual = fwrite(pBuf->storage, 1, pBuf->curLen, out);
438 * data to "out".
440 static int processHeapDump(ExpandBuf* pBuf, FILE* out, int flags)
591 if (ebWriteData(pOutBuf, out) != 0)
604 static int filterData(FILE* in, FILE* out, int flags)
632 if (ebWriteData(pBuf, out) != 0)
642 if (ebWriteData(pBuf, out) != 0)
683 if (processHeapDump(pBuf, out, flags) != 0
712 FILE* out = NULL; local
    [all...]
  /device/generic/goldfish/audio/
audio_hw_legacy.c 69 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
70 return out->sample_rate;
106 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
119 out->device,
120 out->dev);
127 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
142 out->device = (int)val;
154 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
163 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, out->device);
188 struct generic_stream_out *out = (struct generic_stream_out *)stream local
380 struct generic_stream_out *out; local
    [all...]
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess.c 166 DBG("Out: RelocTC [size 1] // to 0x%02" PRIX8, app->nanoReloc[i].type);
171 DBG("Out: RelocTC [size 2] (0x%02" PRIX8 ") // to 0x%02" PRIX8,
192 DBG("Out: Reloc0 [size 2]; repeat=%zu", j);
204 DBG("Out: Reloc8 [size 1] 0x%02" PRIX32, displacement);
208 DBG("Out: Reloc16 [size 3] 0x%06" PRIX32, displacement);
215 DBG("Out: Reloc24 [size 4] 0x%08" PRIX32, displacement);
223 DBG("Out: Reloc32 [size 5] 0x%08" PRIX32, displacement);
238 static int finalizeAndWrite(struct NanoAppInfo *inf, FILE *out, uint32_t layoutFlags, uint64_t appId)
270 good = fwrite(&outHeader, sizeof(outHeader), 1, out) == 1 && good;
273 good = fwrite(&app, sizeof(app), 1, out) == 1 && good
650 FILE *out = NULL; local
    [all...]
  /device/google/dragon/audio/hal/
cras_dsp_pipeline.c 122 /* The instance where the audio data flow out */
161 /* Finds out where the data sent to plugin:index come from. The issue
508 /* first figure out how many buffers do we need */
511 int out = ARRAY_COUNT(&instance->output_audio_ports); local
516 need_buf += out;
520 need_buf += out - in;
676 syslog(LOG_DEBUG, "connect audio buf %d to %s:%d (out)",
703 "connect control (val=%g) to %s:%d (out)",
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
binascii.c 229 ** there are a few uuencodes out there that use
492 newline. Note that 'b' gets encoded as 'Yg==\n' (1 in, 5 out). */
1181 Py_ssize_t in, out; local
1287 Py_ssize_t in, out; local
    [all...]
stropmodule.c 597 PyObject* out; local
638 out = PyString_FromStringAndSize(NULL, i+j);
639 if (out == NULL)
643 q = PyString_AS_STRING(out);
659 return out;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
binascii.c 229 ** there are a few uuencodes out there that use
496 newline. Note that 'b' gets encoded as 'Yg==\n' (1 in, 5 out). */
1196 Py_ssize_t in, out; local
1302 Py_ssize_t in, out; local
    [all...]
stropmodule.c 597 PyObject* out; local
639 out = PyString_FromStringAndSize(NULL, i+j);
640 if (out == NULL)
644 q = PyString_AS_STRING(out);
660 return out;
    [all...]
  /device/linaro/hikey/audio/
audio_hw.c 89 static int start_output_stream(struct alsa_stream_out *out)
91 struct alsa_audio_device *adev = out->dev;
93 if (out->unavailable)
99 out->write_threshold = PLAYBACK_PERIOD_COUNT * PERIOD_SIZE;
100 out->config.start_threshold = PLAYBACK_PERIOD_START_THRESHOLD * PERIOD_SIZE;
101 out->config.avail_min = PERIOD_SIZE;
103 out->pcm = pcm_open(CARD_OUT, PORT_CODEC, PCM_OUT | PCM_MMAP | PCM_NOIRQ | PCM_MONOTONIC, &out->config);
105 if (!pcm_is_ready(out->pcm)) {
106 ALOGE("cannot open pcm_out driver: %s", pcm_get_error(out->pcm))
119 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
132 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
144 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
151 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
177 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
197 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
232 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
247 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
296 struct alsa_stream_out *out = (struct alsa_stream_out *)stream; local
433 struct alsa_stream_out *out; local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
75 private PrintStream console = System.out;
183 //System.out.print(numOfTest + ". Running rule: " + rule + "; input: '" + input.testInput + "'");
186 //System.out.println("; Expecting " + test.getExpected() + "; Success?: " + test.getExpected().equals(test.getResult(result)));
249 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
251 ps = new PrintStream(out);
271 if ( out.toString().length()>0 ) {
272 stdout = out.toString();
296 System.setErr(consoleErr); // Reset standard err out
342 ByteArrayOutputStream out = new ByteArrayOutputStream() local
485 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
103 //System.out.println("match "+((TokenStream)input).LT(1));
148 //System.out.println("viable tokens="+follow.toString(getTokenNames()));
149 //System.out.println("LT(1)="+((TokenStream)input).LT(1));
155 //System.out.println("LT(1)=="+((TokenStream)input).LT(1)+" is consistent with what follows; inserting...");
165 * To get out of recovery mode, the parser must successfully match
320 * want to have a lot of information spit out. Override in that case
538 System.out.println("local follow depth "+i+"="+
628 // System.out.println("missing token");
676 //System.out.println("consumeUntil "+tokenType)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
bn_test.cc 34 * The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
101 static int HexToBIGNUM(bssl::UniquePtr<BIGNUM> *out, const char *in) {
104 out->reset(raw);
122 static bool GetInt(FileTest *t, int *out, const char *attribute) {
133 *out = static_cast<int>(word);
685 uint8_t zeros[256], out[256], reference[128]; local
694 OPENSSL_memset(out, -1, sizeof(out));
695 ASSERT_TRUE(BN_bn2bin_padded(out, sizeof(out), n.get()))
736 uint8_t out[256], zeros[256]; local
    [all...]
  /external/curl/lib/
cookie.c 358 * Returns NULL on out of memory or invalid cookie. This is suboptimal,
395 return NULL; /* bail out if we're this low on memory */
483 badcookie = TRUE; /* out of memory bad */
488 badcookie = TRUE; /* out of memory bad */
639 badcookie = TRUE; /* out of memory bad */
650 this is an illegal line, bail out */
717 /* It turns out, that sometimes the file format allows the path
728 badcookie = TRUE; /* out of memory bad */
849 /* Free the newcomer and get out of here! */
942 * Returns NULL on out of memory. Invalid cookies are ignored
1328 FILE *out; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderPackingFunctionTests.cpp 201 void* out = &outputs[0]; local
203 m_executor->execute((int)inputs.size(), &in, &out);
307 void* out = &outputs[0]; local
309 m_executor->execute((int)inputs.size(), &in, &out);
424 void* out = &outputs[0]; local
426 m_executor->execute((int)inputs.size(), &in, &out);
530 void* out = &outputs[0]; local
532 m_executor->execute((int)inputs.size(), &in, &out);
654 void* out = &outputs[0]; local
656 m_executor->execute((int)inputs.size(), &in, &out);
772 void* out = &outputs[0]; local
899 void* out = &outputs[0]; local
1011 void* out = &outputs[0]; local
1142 void* out = &outputs[0]; local
1254 void* out = &outputs[0]; local
    [all...]
  /external/doclava/src/com/google/doclava/
PackageInfo.java 190 ArrayList<ClassInfo> out = new ArrayList<ClassInfo>(); local
194 out.add(cl);
198 return out.toArray(new ClassInfo[0]);
  /external/drm_hwcomposer/
hwcomposer.cpp 367 std::ostringstream out; local
369 ctx->drm.compositor()->Dump(&out);
370 std::string out_str = out.str();
553 // but it's not ruled out by the hwc specification
  /external/elfutils/libdwfl/
link_map.c 102 Return true iff we figured it out. */
887 Elf_Data out =
894 in.d_size = out.d_size;
897 (&out, &in, elfdata) != NULL))
975 Elf_Data out =
982 in.d_size = out.d_size;
985 (&out, &in, elfdata) != NULL))
883 Elf_Data out = local
971 Elf_Data out = local
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 257 // renormalize the out dir and file combination:
328 final int [] out = new int [1]; local
333 if (! COLUMNS.get (columnName, out))
342 _columns.add (out [0]);
356 final int [] out = new int [1]; local
392 COLUMNS.get (columnName, out);
394 _sort.add (out [0]); // sort attribute ID
405 final int [] out = new int [1]; local
425 nfe.printStackTrace (System.out);
434 COLUMNS.get (columnName, out);
    [all...]
  /external/emma/lib/internal/
stamptool.jar 
  /external/fmtlib/test/
util-test.cc 24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
786 fmt::MemoryWriter out; local
787 fmt::internal::format_windows_error(out, ERROR_INVALID_PARAMETER, message);
795 EXPECT_EQ(out.str(), error.what());
819 fmt::Writer &out, int error_code, StringRef message);
853 fmt::MemoryWriter out; local
854 fmt::format_system_error(out, EDOM, "test error");
855 out << '\n';
856 EXPECT_WRITE(stderr, fmt::report_system_error(EDOM, "test error"), out.str());
908 fmt::MemoryWriter out; local
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageBuilder.java 417 StringBuffer out = new StringBuffer(); local
420 out.append("<" + OUTER_FIELD_PAYLOAD + ">\n");
423 out.append("<" + OUTER_FIELD_STATUS + ">");
424 out.append(status);
425 out.append("</" + OUTER_FIELD_STATUS + ">\n");
429 out.append("<" + OUTER_FIELD_MSG_ID + ">");
430 out.append(mLastMessageId);
431 out.append("</" + OUTER_FIELD_MSG_ID + ">\n");
437 out.append("<" + OUTER_FIELD_TYPE + ">");
438 out.append(msgType)
    [all...]

Completed in 933 milliseconds

<<81828384858687888990>>