Home
last modified time | relevance | path

Searched defs:out (Results 1 – 25 of 1201) sorted by relevance

12345678910>>...49

/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDumpHelpers.cpp26 void dumpVal(std::string& out, const char* name, bool value) { in dumpVal()
30 void dumpVal(std::string& out, const char* name, const void* value) { in dumpVal()
34 void dumpVal(std::string& out, const char* name, int value) { in dumpVal()
38 void dumpVal(std::string& out, const char* name, float value) { in dumpVal()
42 void dumpVal(std::string& out, const char* name, uint32_t value) { in dumpVal()
46 void dumpHex(std::string& out, const char* name, uint64_t value) { in dumpHex()
50 void dumpVal(std::string& out, const char* name, const char* value) { in dumpVal()
54 void dumpVal(std::string& out, const char* name, const std::string& value) { in dumpVal()
58 void dumpVal(std::string& out, const char* name, const char* valueName, int value) { in dumpVal()
62 void dumpVal(std::string& out, const char* name, const std::string& valueName, int value) { in dumpVal()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DWap230WspContentTypeTest.java257 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testDecodeReturnsFalse_WhenOnlyAZeroBytePresent() local
266 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testConstrainedMediaExtensionMedia() local
281 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthExtensionMedia() local
297 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownShortInteger() local
313 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownShortIntegerWithUnknownValue() local
329 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownLongInteger() local
348 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownLongIntegerWithUnknownValue() local
368 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormLengthQuoteWellKnownShortInteger() local
386 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormLengthQuoteWellKnownShortIntegerWithUnknownValue() local
403 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormLengthQuoteWellKnownLongInteger() local
[all …]
/frameworks/base/tools/aapt/
DAaptConfig.cpp34 bool parse(const String8& str, ConfigDescription* out) { in parse()
299 bool parseMcc(const char* name, ResTable_config* out) { in parseMcc()
329 bool parseMnc(const char* name, ResTable_config* out) { in parseMnc()
360 bool parseLayoutDirection(const char* name, ResTable_config* out) { in parseLayoutDirection()
381 bool parseScreenLayoutSize(const char* name, ResTable_config* out) { in parseScreenLayoutSize()
412 bool parseScreenLayoutLong(const char* name, ResTable_config* out) { in parseScreenLayoutLong()
432 bool parseScreenRound(const char* name, ResTable_config* out) { in parseScreenRound()
452 bool parseWideColorGamut(const char* name, ResTable_config* out) { in parseWideColorGamut()
472 bool parseHdr(const char* name, ResTable_config* out) { in parseHdr()
492 bool parseOrientation(const char* name, ResTable_config* out) { in parseOrientation()
[all …]
/frameworks/base/libs/androidfw/
DConfigDescription.cpp36 static bool parseMcc(const char* name, ResTable_config* out) { in parseMcc()
66 static bool parseMnc(const char* name, ResTable_config* out) { in parseMnc()
97 static bool parseGrammaticalInflection(const std::string& name, ResTable_config* out) { in parseGrammaticalInflection()
114 static bool parseLayoutDirection(const char* name, ResTable_config* out) { in parseLayoutDirection()
138 static bool parseScreenLayoutSize(const char* name, ResTable_config* out) { in parseScreenLayoutSize()
174 static bool parseScreenLayoutLong(const char* name, ResTable_config* out) { in parseScreenLayoutLong()
198 static bool parseScreenRound(const char* name, ResTable_config* out) { in parseScreenRound()
221 static bool parseWideColorGamut(const char* name, ResTable_config* out) { in parseWideColorGamut()
244 static bool parseHdr(const char* name, ResTable_config* out) { in parseHdr()
267 static bool parseOrientation(const char* name, ResTable_config* out) { in parseOrientation()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/
DEventListTest.java60 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 0L, 999L); in testAddAndQueryEvents() local
71 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 0L, 999L); in testAddEventsNotInOrder() local
83 List<Event> out = mEventList.queryEvents( in testQueryEventsByType() local
85 assertEventListEquals(Lists.newArrayList(E1, E2), out); in testQueryEventsByType() local
95 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 103L, 109L); in testQueryEventsByTimeRange() local
97 assertEventListEquals(Lists.newArrayList(E2, E3), out); in testQueryEventsByTimeRange() local
107 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 900L, 900L); in testQueryEventsOutOfRange() local
125 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 0L, 999L); in testAddDuplicateEvents() local
/frameworks/base/wifi/java/src/android/net/wifi/
DSoftApConfToXmlMigrationUtil.java187 final XmlSerializer out = new FastXmlSerializer(); in convertConfToXml() local
198 XmlUtils.writeValueXml(softApConf.getSsid(), XML_TAG_SSID, out); in convertConfToXml() local
200 XmlUtils.writeValueXml(softApConf.getBssid().toString(), XML_TAG_BSSID, out); in convertConfToXml() local
202 XmlUtils.writeValueXml(softApConf.getBand(), XML_TAG_AP_BAND, out); in convertConfToXml() local
203 XmlUtils.writeValueXml(softApConf.getChannel(), XML_TAG_CHANNEL, out); in convertConfToXml() local
204 XmlUtils.writeValueXml(softApConf.isHiddenSsid(), XML_TAG_HIDDEN_SSID, out); in convertConfToXml() local
205 XmlUtils.writeValueXml(softApConf.getSecurityType(), XML_TAG_SECURITY_TYPE, out); in convertConfToXml() local
207 XmlUtils.writeValueXml(softApConf.getPassphrase(), XML_TAG_PASSPHRASE, out); in convertConfToXml() local
210 XML_TAG_MAX_NUMBER_OF_CLIENTS, out); in convertConfToXml() local
212 XML_TAG_CLIENT_CONTROL_BY_USER, out); in convertConfToXml() local
[all …]
/frameworks/base/errorprone/refaster/
DEfficientXml.java32 void beforeToString(TypedXmlSerializer out, String n, int v) throws Exception { in beforeToString()
37 void beforeValueOf(TypedXmlSerializer out, String n, int v) throws Exception { in beforeValueOf()
42 void beforeUtils(TypedXmlSerializer out, String n, int v) throws Exception { in beforeUtils()
47 void beforeRadix(TypedXmlSerializer out, String n, int v) throws Exception { in beforeRadix()
52 void after(TypedXmlSerializer out, String n, int v) throws Exception { in after()
59 void beforeToHexString(TypedXmlSerializer out, String n, int v) throws Exception { in beforeToHexString()
64 void beforeRadix(TypedXmlSerializer out, String n, int v) throws Exception { in beforeRadix()
69 void after(TypedXmlSerializer out, String n, int v) throws Exception { in after()
122 void beforeToString(TypedXmlSerializer out, String n, long v) throws Exception { in beforeToString()
127 void beforeValueOf(TypedXmlSerializer out, String n, long v) throws Exception { in beforeValueOf()
[all …]
/frameworks/base/media/mca/filterpacks/native/base/
Dvec_types.h60 Vec<T, dim> out; variable
68 Vec<T, dim> out; variable
76 Vec<T, dim> out; variable
84 Vec<T, dim> out; variable
92 T out = 0; in dot() local
100 Vec<T, dim> out; variable
108 Vec<T, dim> out; variable
116 Vec<T, dim> out; variable
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
DFastDataTest.java79 private FastDataOutput createFastDataOutput(@NonNull OutputStream out, int bufferSize) { in createFastDataOutput()
129 try (FastDataOutput out = createFastDataOutput(new ByteArrayOutputStream(), BOUNCE_SIZE)) { in testUTF_Bounds()
153 final DataOutputStream out = new DataOutputStream(outStream); in testTranscode() local
165 final FastDataOutput out = createFastDataOutput(outStream, BOUNCE_SIZE); in testTranscode() local
175 private static void doTranscodeWrite(DataOutput out) throws IOException { in doTranscodeWrite()
205 doBounce((out) -> { in testBounce_Char() argument
216 doBounce((out) -> { in testBounce_Short() argument
233 doBounce((out) -> { in testBounce_Int() argument
250 doBounce((out) -> { in testBounce_Long() argument
267 doBounce((out) -> { in testBounce_UTF() argument
[all …]
/frameworks/base/services/core/java/com/android/server/connectivity/
DIpConnectivityEventBuilder.java74 final IpConnectivityEvent out = toProto(in); in toProto() local
84 final IpConnectivityEvent out = buildEvent(ev.netId, ev.transports, ev.ifname); in toProto() local
100 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); in toProto() local
113 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); in toProto() local
134 final IpConnectivityEvent out = buildEvent(0, 0, in.iface); in toProto() local
148 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); in toProto() local
168 private static boolean setEvent(IpConnectivityEvent out, Parcelable in) { in setEvent()
217 private static void setDhcpErrorEvent(IpConnectivityEvent out, DhcpErrorEvent in) { in setDhcpErrorEvent()
223 private static void setDhcpClientEvent(IpConnectivityEvent out, DhcpClientEvent in) { in setDhcpClientEvent()
230 private static void setIpManagerEvent(IpConnectivityEvent out, IpManagerEvent in) { in setIpManagerEvent()
[all …]
/frameworks/rs/cpp/
DScriptIntrinsics.cpp92 void ScriptIntrinsicBlend::forEachClear(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachClear()
100 void ScriptIntrinsicBlend::forEachSrc(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrc()
108 void ScriptIntrinsicBlend::forEachDst(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDst()
116 void ScriptIntrinsicBlend::forEachSrcOver(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcOver()
124 void ScriptIntrinsicBlend::forEachDstOver(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDstOver()
132 void ScriptIntrinsicBlend::forEachSrcIn(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcIn()
140 void ScriptIntrinsicBlend::forEachDstIn(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDstIn()
148 void ScriptIntrinsicBlend::forEachSrcOut(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcOut()
156 void ScriptIntrinsicBlend::forEachDstOut(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDstOut()
164 void ScriptIntrinsicBlend::forEachSrcAtop(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcAtop()
[all …]
/frameworks/base/tools/aapt2/java/
DJavaClassGenerator_test.cpp49 StringOutputStream out(&result); in TEST() local
73 StringOutputStream out(&output); in TEST() local
97 StringOutputStream out(&output); in TEST() local
133 StringOutputStream out(&output); in TEST() local
169 StringOutputStream out(&output); in TEST() local
199 StringOutputStream out(&output); in TEST() local
212 StringOutputStream out(&output); in TEST() local
225 StringOutputStream out(&output); in TEST() local
289 StringOutputStream out(&output); in TEST() local
313 StringOutputStream out(&output); in TEST() local
[all …]
DAnnotationProcessor_test.cpp41 StringOutputStream out(&annotations); in TEST() local
54 StringOutputStream out(&annotations); in TEST() local
69 StringOutputStream out(&annotations); in TEST() local
84 StringOutputStream out(&annotations); in TEST() local
99 StringOutputStream out(&annotations); in TEST() local
/frameworks/base/core/tests/coretests/src/android/util/
DXmlTest.java59 final TypedXmlSerializer out = Xml.newFastSerializer(); in testLargeValues_FastIndenting() local
75 private static void doLargeValues(TypedXmlSerializer out, TypedXmlPullParser in) in doLargeValues()
114 final TypedXmlSerializer out = Xml.newFastSerializer(); in testPersistableBundle_FastIndenting() local
130 private static void doPersistableBundle(TypedXmlSerializer out, TypedXmlPullParser in) in doPersistableBundle()
167 static byte[] doPersistableBundleWrite(TypedXmlSerializer out, PersistableBundle bundle) in doPersistableBundleWrite()
202 final TypedXmlSerializer out = Xml.newFastSerializer(); in testVerify_FastIndenting() local
218 private static void doVerify(TypedXmlSerializer out, TypedXmlPullParser in) throws Exception { in doVerify()
234 static void doVerifyWrite(TypedXmlSerializer out) throws Exception { in doVerifyWrite()
/frameworks/base/tools/aapt2/format/binary/
DResEntryWriter_test.cpp60 BigBuffer out(512); in TEST_F() local
72 BigBuffer out(512); in TEST_F() local
101 BigBuffer out(512); in TEST_F() local
112 BigBuffer out(512); in TEST_F() local
131 BigBuffer out(512); in TEST_F() local
142 BigBuffer out(512); in TEST_F() local
170 BigBuffer out(512); in TEST_F() local
181 BigBuffer out(512); in TEST_F() local
/frameworks/base/libs/androidfw/tests/
DConfigLocale_test.cpp32 char out[4] = {1, 1, 1, 1}; in TEST() local
55 char out[4] = {1, 1, 1, 1}; in TEST() local
71 char out[4] = {1, 1, 1, 1}; in TEST() local
95 char out[4] = {1, 1, 1, 1}; in TEST() local
107 char out[4] = {1, 1, 1, 1}; in TEST() local
116 const char* script, const char* variant, ResTable_config* out) { in fillIn()
203 char out[4] = {1, 1, 1, 1}; in TEST() local
326 char out[RESTABLE_MAX_LOCALE_LEN]; in TEST() local
340 char out[RESTABLE_MAX_LOCALE_LEN]; in TEST() local
354 char out[RESTABLE_MAX_LOCALE_LEN]; in TEST() local
/frameworks/proto_logging/stats/stats_log_api_gen/
Dutils.cpp255 void write_namespace(FILE* out, const string& cppNamespaces) { in write_namespace()
263 void write_closing_namespace(FILE* out, const string& cppNamespaces) { in write_closing_namespace()
270 static void write_cpp_usage(FILE* out, const string& method_name, const string& atom_code_name, in write_cpp_usage()
297 void write_native_atom_constants(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_native_atom_constants()
332 void write_native_atom_enums(FILE* out, const Atoms& atoms) { in write_native_atom_enums()
357 void write_native_method_signature(FILE* out, const string& signaturePrefix, in write_native_method_signature()
389 void write_native_method_header(FILE* out, const string& methodName, in write_native_method_header()
399 void write_native_header_preamble(FILE* out, const string& cppNamespace, bool includePull, in write_native_header_preamble()
428 void write_native_header_epilogue(FILE* out, const string& cppNamespace) { in write_native_header_epilogue()
433 void write_java_atom_codes(FILE* out, const Atoms& atoms) { in write_java_atom_codes()
[all …]
Djava_writer.cpp25 static int write_java_q_logger_class(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_java_q_logger_class()
42 static void write_java_annotation_constants(FILE* out, const int minApiLevel, in write_java_annotation_constants()
69 static void write_annotations(FILE* out, int argIndex, in write_annotations()
128 static void write_method_signature(FILE* out, const vector<java_type_t>& signature, in write_method_signature()
145 static int write_method_body(FILE* out, const vector<java_type_t>& signature, in write_method_body()
240 static int write_java_pushed_methods(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_java_pushed_methods()
307 static int write_java_pulled_methods(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_java_pulled_methods()
335 int write_stats_log_java(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_java()
387 int write_stats_log_java_vendor(FILE* out, const Atoms& atoms, const string& javaClass, in write_stats_log_java_vendor()
Dnative_writer.cpp24 static void write_native_annotation_constants(FILE* out) { in write_native_annotation_constants()
35 static void write_annotations(FILE* out, int argIndex, in write_annotations()
99 static int write_native_method_body(FILE* out, const vector<java_type_t>& signature, in write_native_method_body()
186 static void write_native_method_call(FILE* out, const string& methodName, in write_native_method_call()
213 static int write_native_stats_write_methods(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_native_stats_write_methods()
351 static void write_native_stats_write_non_chained_methods(FILE* out, in write_native_stats_write_non_chained_methods()
382 static int write_native_build_stats_event_methods(FILE* out, in write_native_build_stats_event_methods()
404 int write_stats_log_cpp(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_cpp()
457 int write_stats_log_header(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_header()
Dmain.cpp325 FILE* out = fopen(cppFilename.c_str(), "w"); in run() local
347 FILE* out = fopen(headerFilename.c_str(), "w"); in run() local
380 FILE* out = fopen(javaFilename.c_str(), "w"); in run() local
410 FILE* out = fopen(rustFilename.c_str(), "w"); in run() local
429 FILE* out = fopen(rustHeaderFilename.c_str(), "w"); in run() local
/frameworks/libs/binary_translation/base/include/berberis/base/
Dformat_buffer.h60 bool PutString(Out* out, const Style& style, const char* s) { in PutString()
86 bool PutChar(Out* out, const Style& style, char c) { in PutChar()
96 bool PutUInt(Out* out, in PutUInt()
158 bool PutInt(Out* out, const Style& style, intmax_t v, size_t base) { in PutInt()
171 bool Put(Out* out) { in Put()
187 bool PutSpec(Out* out) { in PutSpec()
213 bool PutLongSpec(Out* out, const Style& style) { in PutLongSpec()
228 bool PutLongLongSpec(Out* out, const Style& style) { in PutLongLongSpec()
241 bool PutSizeTSpec(Out* out, const Style& style) { in PutSizeTSpec()
357 bool FormatBufferImpl(Out* out, const char* format, Args* args) { in FormatBufferImpl()
[all …]
/frameworks/base/core/java/com/android/internal/util/
DXmlUtils.java402 public static final void writeMapXml(Map val, OutputStream out) in writeMapXml()
424 public static final void writeListXml(List val, OutputStream out) in writeListXml()
449 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out) in writeMapXml()
471 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out, in writeMapXml()
505 public static final void writeMapXml(Map val, TypedXmlSerializer out, in writeMapXml()
516 writeValueXml(e.getValue(), (String)e.getKey(), out, callback); in writeMapXml() local
534 public static final void writeListXml(List val, String name, TypedXmlSerializer out) in writeListXml()
551 writeValueXml(val.get(i), null, out); in writeListXml() local
558 public static final void writeSetXml(Set val, String name, TypedXmlSerializer out) in writeSetXml()
591 TypedXmlSerializer out) in writeByteArrayXml()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDumpHelpers.h48 void dumpVal(std::string& out, const char* name, const char* valueName, EnumType value) { in dumpVal()
53 void dumpVal(std::string& out, const char* name, const std::string& valueName, EnumType value) { in dumpVal()
68 void dumpVal(std::string& out, const char* name, std::optional<T> value) { in dumpVal()
/frameworks/base/apct-tests/perftests/core/src/com/android/internal/util/
DFastDataPerfTest.java58 final DataOutputStream out = new DataOutputStream(bos); in timeWrite_Upstream() local
74 final FastDataOutput out = ArtFastDataOutput.obtain(os); in timeWrite_LocalUsing4ByteSequences() local
90 final FastDataOutput out = FastDataOutput.obtain(os); in timeWrite_LocalUsing3ByteSequences() local
154 final DataOutput out = new DataOutputStream(os); in doWrite() local
159 private static void doWrite(DataOutput out) throws IOException { in doWrite()
/frameworks/base/core/jni/
Dandroid_app_admin_SecurityLog.cpp38 jobject out) { in android_app_admin_SecurityLog_readEvents()
49 jobject out) { in android_app_admin_SecurityLog_readEventsSince()
59 jobject out) { in android_app_admin_SecurityLog_readPreviousEvents()
70 jobject out) { in android_app_admin_SecurityLog_readEventsOnWrapping()

12345678910>>...49