• Home
  • Raw
  • Download

Lines Matching refs:bufferedReader

1930         BufferedReader bufferedReader = null;  in infoSpecialProcess()  local
1936 bufferedReader = new BufferedReader(inputStreamReader); in infoSpecialProcess()
1937 bufferedReader.mark((int) srcFile.length() + 1); in infoSpecialProcess()
1939 parsePackModuleName(bufferedReader, utility); in infoSpecialProcess()
1940 bufferedReader.reset(); in infoSpecialProcess()
1941 parsePackFormName(bufferedReader, utility); in infoSpecialProcess()
1942 bufferedReader.reset(); in infoSpecialProcess()
1943 parseDeviceType(bufferedReader, utility); in infoSpecialProcess()
1944 bufferedReader.reset(); in infoSpecialProcess()
1947 String str = bufferedReader.readLine(); in infoSpecialProcess()
1953 str = bufferedReader.readLine(); in infoSpecialProcess()
1959 Utility.closeStream(bufferedReader); in infoSpecialProcess()
1976 BufferedReader bufferedReader = null; in jsonSpecialProcess() local
1982 bufferedReader = new BufferedReader(inputStreamReader); in jsonSpecialProcess()
1983 bufferedReader.mark((int) srcFile.length() + 1); in jsonSpecialProcess()
1984 bufferedReader.reset(); in jsonSpecialProcess()
1990 parseCompressNativeLibs(bufferedReader, utility); in jsonSpecialProcess()
1998 bufferedReader.reset(); in jsonSpecialProcess()
1999 parseDeviceType(bufferedReader, utility); in jsonSpecialProcess()
2000 bufferedReader.reset(); in jsonSpecialProcess()
2003 String str = bufferedReader.readLine(); in jsonSpecialProcess()
2009 str = bufferedReader.readLine(); in jsonSpecialProcess()
2034 Utility.closeStream(bufferedReader); in jsonSpecialProcess()
2047 …private void parsePackModuleName(BufferedReader bufferedReader, Utility utility) throws BundleExce… in parsePackModuleName() argument
2050 while ((lineStr = bufferedReader.readLine()) != null) { in parsePackModuleName()
2074 …private void parsePackFormName(BufferedReader bufferedReader, Utility utility) throws BundleExcept… in parsePackFormName() argument
2077 while ((lineStr = bufferedReader.readLine()) != null) { in parsePackFormName()
2157 …private void parseCompressNativeLibs(BufferedReader bufferedReader, Utility utility) throws Bundle… in parseCompressNativeLibs() argument
2160 while ((lineStr = bufferedReader.readLine()) != null) { in parseCompressNativeLibs()
2208 …private void parseDeviceType(BufferedReader bufferedReader, Utility utility) throws BundleExceptio… in parseDeviceType() argument
2212 while ((lineStr = bufferedReader.readLine()) != null) { in parseDeviceType()