Home
last modified time | relevance | path

Searched refs:istream (Results 1 – 7 of 7) sorted by relevance

/development/vndk/tools/header-checker/src/utils/
Dconfig_file.cpp59 bool ConfigFile::Load(std::istream &istream) { in Load() argument
63 if (!Json::parseFromStream(builder, istream, &root, &errorMessage)) { in Load()
Dapi_level.h37 bool Load(std::istream &stream);
Dconfig_file.h87 bool Load(std::istream &istream);
Dapi_level.cpp27 bool ApiLevelMap::Load(std::istream &stream) { in Load()
/development/vndk/tools/header-checker/src/repr/symbol/
Dversion_script_parser.h103 std::unique_ptr<ExportedSymbolSet> Parse(std::istream &version_script_stream);
145 std::istream *stream_;
Dversion_script_parser.cpp336 std::istream &stream) { in Parse()
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
DNetworkUtilities.java125 InputStream istream = (resp.getEntity() != null) ? resp.getEntity().getContent() in authenticate() local
127 if (istream != null) { in authenticate()
128 BufferedReader ireader = new BufferedReader(new InputStreamReader(istream)); in authenticate()