HomeSort by relevance Sort by last modified time
    Searched full:sanitized (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/compiler-rt/test/asan/TestCases/Linux/
asan_rt_confict_test-1.cc 1 // Test that preloading dynamic runtime to statically sanitized
asan_preload_test-1.cc 1 // Test that non-sanitized executables work with sanitized shared libs
local_alias.cc 4 // false positive global-buffer-overflow due to sanitized library poisons
5 // globals from non-sanitized one.
kernel-area.cc 4 // Test that kernel area is not sanitized on 32-bit machines.
  /device/google/marlin/dataservices/
configure.ac 17 AC_ARG_WITH(sanitized-headers,
18 AS_HELP_STRING([--with-sanitized-headers=DIR],
19 [Specify the location of the sanitized Linux headers]),
  /device/huawei/angler/dataservices/
configure.ac 16 AC_ARG_WITH(sanitized-headers,
17 AS_HELP_STRING([--with-sanitized-headers=DIR],
18 [Specify the location of the sanitized Linux headers]),
  /hardware/qcom/data/ipacfg-mgr/msm8998/
configure.ac 23 AC_ARG_WITH(sanitized-headers,
24 AS_HELP_STRING([--with-sanitized-headers=DIR],
25 [Specify the location of the sanitized Linux headers]),
  /hardware/qcom/display/msm8998/
configure.ac 31 AC_ARG_WITH(sanitized-headers,
32 AS_HELP_STRING([--with-sanitized-headers=DIR],
33 [Specify the location of the sanitized Linux headers]),
  /hardware/qcom/display/sdm845/
configure.ac 31 AC_ARG_WITH(sanitized-headers,
32 AS_HELP_STRING([--with-sanitized-headers=DIR],
33 [Specify the location of the sanitized Linux headers]),
  /external/owasp/sanitizer/src/tests/org/owasp/html/
ExamplesTest.java 82 String sanitized = EbayPolicyExample.POLICY_DEFINITION.sanitize(input); local
83 assertEquals("<p>Hello World</p>", sanitized);
89 String sanitized = EbayPolicyExample.POLICY_DEFINITION.sanitize(input); local
90 assertEquals("<p>Hello World</p>", sanitized);
96 String sanitized = EbayPolicyExample.POLICY_DEFINITION.sanitize(input); local
98 sanitized);
  /external/curl/src/
tool_doswin.h 41 SANITIZEcode sanitize_file_name(char **const sanitized, const char *file_name,
45 SANITIZEcode msdosify(char **const sanitized, const char *file_name,
47 SANITIZEcode rename_if_reserved_dos_device_name(char **const sanitized,
tool_doswin.c 92 static SANITIZEcode msdosify(char **const sanitized, const char *file_name,
95 static SANITIZEcode rename_if_reserved_dos_device_name(char **const sanitized,
117 Without this flag colons are sanitized.
120 Without this flag path separators and colons are sanitized.
127 Without this flag if the sanitized filename or path will be too long an error
132 Success: (SANITIZE_ERR_OK) *sanitized points to a sanitized copy of file_name.
133 Failure: (!= SANITIZE_ERR_OK) *sanitized is NULL.
135 SANITIZEcode sanitize_file_name(char **const sanitized, const char *file_name,
143 if(!sanitized)
    [all...]
  /external/autotest/client/site_tests/network_DhcpNonAsciiParameter/
control 16 to be sanitized before sending to DBus.
  /external/libbrillo/brillo/
cryptohome.h 45 // Checks whether |sanitized| has the format of a sanitized username.
46 BRILLO_EXPORT bool IsSanitizedUserName(const std::string& sanitized);
48 // Returns a sanitized form of |username|. For x != y, SanitizeUserName(x) !=
cryptohome.cc 112 bool IsSanitizedUserName(const std::string& sanitized) {
114 return (sanitized.length() == 2 * SHA_DIGEST_LENGTH) &&
115 base::HexStringToBytes(sanitized, &bytes);
  /frameworks/base/cmds/app_process/
Android.mk 52 # In SANITIZE_LITE mode, we create the sanitized binary in a separate location (but reuse
54 # that depend on sanitized libraries will be relinked, even if they set LOCAL_SANITIZE := never.
  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.kt 105 setDataIsSensitive(!item.sanitized)
169 sanitized: Boolean) = Line(idEntry, label, hints, text, sanitized).also {
182 val sanitized: Boolean) {
189 " (read-only)" + if (sanitized) " (sanitized)" else " (sensitive"
197 text: String, sanitized: Boolean) {
202 var fieldTextItem: Item = Item(this, ++nextId, hints, View.AUTOFILL_TYPE_TEXT, text, true, sanitized)
  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.kt 105 setDataIsSensitive(!item.sanitized)
169 sanitized: Boolean) = Line(idEntry, label, hints, text, sanitized).also {
182 val sanitized: Boolean) {
189 " (read-only)" + if (sanitized) " (sanitized)" else " (sensitive"
197 text: String, sanitized: Boolean) {
202 var fieldTextItem: Item = Item(this, ++nextId, hints, View.AUTOFILL_TYPE_TEXT, text, true, sanitized)
  /external/compiler-rt/test/asan/TestCases/
printf-3.c 22 // Check that %n is sanitized.
printf-4.c 20 // Check that size of output buffer is sanitized.
printf-5.c 21 // Check that format string is sanitized.
  /system/sepolicy/prebuilts/api/26.0/public/
asan_extract.te 31 # Restorecon will actually already try to run with sanitized libraries (libpackagelistparser).
  /system/sepolicy/public/
asan_extract.te 31 # Restorecon will actually already try to run with sanitized libraries (libpackagelistparser).
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.java 204 child.setDataIsSensitive(!item.sanitized);
320 private final boolean sanitized; field in class:CustomVirtualView.Item
328 boolean editable, boolean sanitized) {
334 this.sanitized = sanitized;
345 + (sanitized ? " (sanitized)" : " (sensitive"))
433 String text, boolean sanitized) {
438 autofillType, text, true, sanitized);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.java 204 child.setDataIsSensitive(!item.sanitized);
320 private final boolean sanitized; field in class:CustomVirtualView.Item
328 boolean editable, boolean sanitized) {
334 this.sanitized = sanitized;
345 + (sanitized ? " (sanitized)" : " (sensitive"))
433 String text, boolean sanitized) {
438 autofillType, text, true, sanitized);

Completed in 512 milliseconds

1 2 3 4 5 6 7 8 91011