Home
last modified time | relevance | path

Searched defs:outputFile (Results 1 – 25 of 72) sorted by relevance

123

/external/tink/tools/tinkey/src/test/java/com/google/crypto/tink/tinkey/
DCreateKeysetCommandTest.java52 Path outputFile = Paths.get(path.toString(), "keyset"); in testCreateCleartext_shouldCreateNewKeyset() local
71 Path outputFile = Paths.get(path.toString(), "keyset"); in testCreateCleartext_explicitJson_shouldCreateNewKeyset() local
92 Path outputFile = Paths.get(path.toString(), "keyset"); in testCreateCleartext_binary_shouldCreateNewKeyset() local
113 Path outputFile = Paths.get(path.toString(), "keyset"); in testCreateCleartext_withMasterKey_shouldCreateNewKeyset() local
145 Path outputFile = Paths.get(path.toString(), "keyset"); in testCreateCleartext_withMasterKey_jsonFormat_shouldCreateNewKeyset() local
DAddKeyCommandTest.java54 Path outputFile = Paths.get(path.toString(), "output"); in testAddKey_json_works() local
89 Path outputFile = Paths.get(path.toString(), "output"); in testAddKey_binary_works() local
128 Path outputFile = Paths.get(path.toString(), "output"); in testAddKey_binaryEncrypted_works() local
178 Path outputFile = Paths.get(path.toString(), "output"); in testAddKey_jsonEncrypted_works() local
229 Path outputFile = Paths.get(path.toString(), "output"); in testAddKey_notValidKeyset_fails() local
DRotateKeysetCommandTest.java54 Path outputFile = Paths.get(path.toString(), "output"); in testRotateKey_json_works() local
89 Path outputFile = Paths.get(path.toString(), "output"); in testRotateKey_binary_works() local
130 Path outputFile = Paths.get(path.toString(), "output"); in testRotateKey_binaryEncrypted_works() local
180 Path outputFile = Paths.get(path.toString(), "output"); in testRotateKey_jsonEncrypted_works() local
231 Path outputFile = Paths.get(path.toString(), "output"); in testRotateKey_notValidKeyset_fails() local
DConvertKeysetCommandTest.java83 Path outputFile = Paths.get(tempDirectory.toString(), "output"); in testConvertKeyset_json2Binary_works() local
116 Path outputFile = Paths.get(tempDirectory.toString(), "output"); in testConvertKeyset_binary2Json_works() local
149 Path outputFile = Paths.get(tempDirectory.toString(), "output"); in testConvertKeyset_json2encryptedBinary_works() local
185 Path outputFile = Paths.get(tempDirectory.toString(), "output"); in testConvertKeyset_encryptedBinary2Json_works() local
/external/apache-commons-io/src/main/java/org/apache/commons/io/output/
DDeferredFileOutputStream.java68 private Path outputFile; field in DeferredFileOutputStream.Builder
123 public Builder setOutputFile(final File outputFile) { in setOutputFile()
135 public Builder setOutputFile(final Path outputFile) { in setOutputFile()
244 public DeferredFileOutputStream(final int threshold, final File outputFile) { in DeferredFileOutputStream()
259 …private DeferredFileOutputStream(final int threshold, final File outputFile, final String prefix, … in DeferredFileOutputStream()
280 …DeferredFileOutputStream(final int threshold, final int initialBufferSize, final File outputFile) { in DeferredFileOutputStream()
311 …private DeferredFileOutputStream(final int threshold, final Path outputFile, final String prefix, … in DeferredFileOutputStream()
/external/bazelbuild-rules_android/src/tools/javatests/com/google/devtools/build/android/sandboxedsdktoolbox/sdkdependenciesmanifest/
DGenerateSdkDependenciesManifestCommandTest.java67 Path outputFile = testFolder.newFile().toPath(); in generateManifest_forSingleSdkModuleConfig_success() local
96 Path outputFile = testFolder.newFile().toPath(); in generateManifest_forMultipleSdkModuleConfigs_success() local
127 Path outputFile = testFolder.newFile().toPath(); in generateManifest_forSdksAndArchives_success() local
/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/emitters/
DCodeWriter.java115 Path outputFile = Paths.get(dir, this.file); in flush() local
131 private long fileSize(Path outputFile) throws IOException { in fileSize()
139 …private void validateFileContentMatches(Path outputFile, String newFileContents) throws IOExceptio… in validateFileContentMatches()
/external/tink/java_src/examples/streamingaead/
DStreamingAeadExample.java65 Path outputFile = Paths.get(args[3]); in main() local
94 StreamingAead streamingAead, Path inputFile, Path outputFile, byte[] associatedData) in encryptFile()
117 StreamingAead streamingAead, Path inputFile, Path outputFile, byte[] associatedData) in decryptFile()
/external/aws-sdk-java-v2/codegen-lite/src/main/java/software/amazon/awssdk/codegen/lite/emitters/
DCodeWriter.java104 File outputFile = Utils.createFile(dir, this.file); in flush() local
121 …private void validateFileContentMatches(File outputFile, String newFileContents) throws IOExceptio… in validateFileContentMatches()
/external/parameter-framework/upstream/test/test-subsystem/
DTESTSubsystemObject.cpp62 std::ofstream outputFile; in sendToHW() local
97 void CTESTSubsystemObject::sendToFile(std::ofstream &outputFile) in sendToFile()
/external/vogar/src/vogar/tasks/
DBuildActionTask.java54 private final File outputFile; field in BuildActionTask
56 public BuildActionTask(Run run, Action action, Driver driver, File outputFile) { in BuildActionTask()
/external/ksp/buildSrc/src/main/kotlin/com/google/devtools/ksp/
DKtlint.kt84 val outputFile = project.buildDir.resolve("reports/ktlint/ktlint-checkstyle-report.xml") in JavaExec() constant
/external/bazelbuild-rules_android/src/tools/javatests/com/google/devtools/build/android/sandboxedsdktoolbox/apidescriptors/
DExtractApiDescriptorsCommandTest.java46 Path outputFile = testFolder.getRoot().toPath().resolve("output.jar"); in extractApiDescriptors_keepsAnnotatedClassesInDescriptors() local
/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/debug/
DCodeGeneratorRequestFileToGapicMain.java36 String outputFile = args[1]; in main() local
/external/tink/java_src/examples/hybrid/
DHybridExample.java60 Path outputFile = Paths.get(args[3]); in main() local
/external/tink/java_src/examples/aead/
DAeadExample.java57 Path outputFile = Paths.get(args[3]); in main() local
/external/tink/java_src/examples/deterministicaead/
DDeterministicAeadExample.java57 Path outputFile = Paths.get(args[3]); in main() local
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
DHttpTransportSE.java144 public List call(String soapAction, SoapEnvelope envelope, List headers, File outputFile) in call()
310 private InputStream readDebug(InputStream is, int contentLength, File outputFile) in readDebug()
/external/google-auth-library-java/oauth2_http/javatests/com/google/auth/oauth2/
DPluggableAuthCredentialsTest.java100 String outputFile = "/path/to/output/file"; in retrieveSubjectToken_shouldPassAllOptionsToHandler() local
124 assertEquals(options.getOutputFilePath(), outputFile); in retrieveSubjectToken_shouldPassAllOptionsToHandler() local
610 String command, @Nullable String timeoutMs, @Nullable String outputFile) { in buildCredentialSource()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/
DMain.java106 File outputFile = outputSourceFileGenerator.generate( in execute() local
109 writeSource(compilationUnitHandler.getDocument(), outputFile); in execute() local
114 private static void writeSource(Document document, File outputFile) throws IOException { in writeSource()
/external/jcommander/src/test/java/com/beust/jcommander/
DVariableArityTest.java28 public String outputFile = "matrix-generation.zip"; field in VariableArityTest.ModelGenerationConfig
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DRtcEventLog.java38 public void start(final File outputFile) { in start()
/external/cronet/testing/android/junit/java/src/org/chromium/testing/local/
DJsonLogger.java27 public JsonLogger(File outputFile) { in JsonLogger()
/external/tink/java_src/examples/cleartextkeyset/
DCleartextKeysetExample.java93 Path outputFile = Paths.get(args[3]); in main() local
/external/deqp/framework/qphelper/
DqpXmlWriter.c38 FILE *outputFile; member
193 qpXmlWriter *qpXmlWriter_createFileWriter(FILE *outputFile, bool useCompression, bool flushAfterWri… in qpXmlWriter_createFileWriter()

123