Home
last modified time | relevance | path

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

1234

/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/leakcanary2/shark-cli/src/main/java/shark/
DStripHprofCommand.kt16 val outputFile = stripper.stripPrimitiveArrays(heapDumpFile) in run() constant
DDeobfuscateHprofCommand.kt22 val outputFile = deobfuscator.deobfuscate(proguardMapping, heapDumpFile) in run() constant
/external/tink-java/examples/streamingaead/
DStreamingAeadExample.java66 Path outputFile = Paths.get(args[3]); in main() local
102 StreamingAead streamingAead, Path inputFile, Path outputFile, byte[] associatedData) in encryptFile()
125 StreamingAead streamingAead, Path inputFile, Path outputFile, byte[] associatedData) in decryptFile()
/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/dagger2/buildSrc/src/main/kotlin/dagger/gradle/build/
DResourceCopyTask.kt65 val outputFile = outputDirectory.get().dir(jarOutputDir).file(inputFile.name).asFile in <lambda>() 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/robolectric/buildSrc/src/main/java/org/robolectric/gradle/agp/
DExtractAarTransform.kt116 val outputFile = File(outputDir, path) in extract() constant
/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/examples/hybrid/
DHybridExample.java61 Path outputFile = Paths.get(args[3]); 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/deterministicaead/
DDeterministicAeadExample.java57 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/examples/deterministicaead/
DDeterministicAeadExample.java58 Path outputFile = Paths.get(args[3]); in main() local
/external/tink-java/examples/aead/
DAeadExample.java58 Path outputFile = Paths.get(args[3]); in main() local

1234