Searched refs:contents (Results 1 – 5 of 5) sorted by relevance
88 private fun stringReplaceOnce(contents: ByteArray, fromValue: String, toValue: String) { in stringReplaceOnce()90 for (i in 0..<contents.size) { in stringReplaceOnce()91 if (i + fromValue.length > contents.size) { return } in stringReplaceOnce()94 if (contents[i + j] != fromValue.get(j).toByte()) { in stringReplaceOnce()101 contents[i + j] = toValue.get(j).toByte(); in stringReplaceOnce()
3 The contents of this directory have been updated and migrated to
114 public GhidraScriptRunner postScript(String contents, Map<String, String> propertiesContent) { in postScript() argument115 mPostScriptContent = Optional.ofNullable(contents); in postScript()129 public GhidraScriptRunner preScript(String contents) { in preScript() argument130 mPreScriptContent = Optional.ofNullable(contents); in preScript()
68 public static LayoutPullParser createFromString(@NonNull String contents) { in createFromString() argument70 contents.getBytes(StandardCharsets.UTF_8))); in createFromString()
86 // A source file that contains the contents of the above shell-as-test-app APK