Searched refs:sizeInMb (Results 1 – 6 of 6) sorted by relevance
44 final double sizeInMb = sizeBytes / (1024.0 * 1024.0); in formatSize() local45 return String.format("%.2f MB", sizeInMb); in formatSize()
178 int sizeInMb = -1; in registerCreateFileButton()180 sizeInMb = Integer.parseInt(input.getText().toString()); in registerCreateFileButton()183 if (sizeInMb <= 0) { in registerCreateFileButton()190 String response = sdkApi.createFile(sizeInMb); in registerCreateFileButton()
71 private void createFile(String path, String filename, int sizeInMb) throws IOException { in createFile() argument75 final byte[] buffer = new byte[sizeInMb * 1024 * 1024]; in createFile()
23 String createFile(int sizeInMb); in createFile() argument
107 public String createFile(int sizeInMb) throws RemoteException { in createFile() argument124 final byte[] buffer = new byte[sizeInMb * 1024 * 1024]; in createFile()
692 final Integer sizeInMb = Integer.parseInt(inputString); in registerCreateFileButton()701 sdkApi.createFile(sizeInMb); in registerCreateFileButton()707 sizeInMb); in registerCreateFileButton()