• Home
  • Raw
  • Download

Lines Matching refs:bufferedReader

2234         BufferedReader bufferedReader = null;  in infoSpecialProcess()  local
2240 bufferedReader = new BufferedReader(inputStreamReader); in infoSpecialProcess()
2241 bufferedReader.mark((int) srcFile.length() + 1); in infoSpecialProcess()
2243 parsePackModuleName(bufferedReader, utility); in infoSpecialProcess()
2244 bufferedReader.reset(); in infoSpecialProcess()
2245 parsePackFormName(bufferedReader, utility); in infoSpecialProcess()
2246 bufferedReader.reset(); in infoSpecialProcess()
2247 parseDeviceType(bufferedReader, utility); in infoSpecialProcess()
2248 bufferedReader.reset(); in infoSpecialProcess()
2251 String str = bufferedReader.readLine(); in infoSpecialProcess()
2257 str = bufferedReader.readLine(); in infoSpecialProcess()
2263 Utility.closeStream(bufferedReader); in infoSpecialProcess()
2280 BufferedReader bufferedReader = null; in jsonSpecialProcess() local
2286 bufferedReader = new BufferedReader(inputStreamReader); in jsonSpecialProcess()
2287 bufferedReader.mark((int) srcFile.length() + 1); in jsonSpecialProcess()
2288 bufferedReader.reset(); in jsonSpecialProcess()
2294 parseCompressNativeLibs(bufferedReader, utility); in jsonSpecialProcess()
2302 bufferedReader.reset(); in jsonSpecialProcess()
2303 parseDeviceType(bufferedReader, utility); in jsonSpecialProcess()
2304 bufferedReader.reset(); in jsonSpecialProcess()
2307 String str = bufferedReader.readLine(); in jsonSpecialProcess()
2313 str = bufferedReader.readLine(); in jsonSpecialProcess()
2338 Utility.closeStream(bufferedReader); in jsonSpecialProcess()
2351 …private void parsePackModuleName(BufferedReader bufferedReader, Utility utility) throws BundleExce… in parsePackModuleName() argument
2354 while ((lineStr = bufferedReader.readLine()) != null) { in parsePackModuleName()
2378 …private void parsePackFormName(BufferedReader bufferedReader, Utility utility) throws BundleExcept… in parsePackFormName() argument
2381 while ((lineStr = bufferedReader.readLine()) != null) { in parsePackFormName()
2461 …private void parseCompressNativeLibs(BufferedReader bufferedReader, Utility utility) throws Bundle… in parseCompressNativeLibs() argument
2464 while ((lineStr = bufferedReader.readLine()) != null) { in parseCompressNativeLibs()
2512 …private void parseDeviceType(BufferedReader bufferedReader, Utility utility) throws BundleExceptio… in parseDeviceType() argument
2516 while ((lineStr = bufferedReader.readLine()) != null) { in parseDeviceType()
2959 BufferedReader bufferedReader = new BufferedReader(inputStreamReader); in parseAndModifyConfigJson() local