Searched refs:sanitized (Results 1 – 6 of 6) sorted by relevance
506 CriticalEventProto sanitized = sanitizeCriticalEventProto(base); in sanitizeAnr() local507 sanitized.setAnr(anr); in sanitizeAnr()508 return sanitized; in sanitizeAnr()518 CriticalEventProto sanitized = sanitizeCriticalEventProto(base); in sanitizeJavaCrash() local519 sanitized.setJavaCrash(crash); in sanitizeJavaCrash()520 return sanitized; in sanitizeJavaCrash()531 sanitized.setNativeCrash(crash); in sanitizeNativeCrash()532 return sanitized; in sanitizeNativeCrash()536 CriticalEventProto sanitized = new CriticalEventProto(); in sanitizeCriticalEventProto() local537 sanitized.timestampMs = base.timestampMs; in sanitizeCriticalEventProto()[all …]
78 final Date sanitized = mDateFormat.parse(converted); in sanitize() local79 if (sDebug) Log.d(TAG, "Sanitized to " + sanitized); in sanitize()80 return AutofillValue.forDate(sanitized.getTime()); in sanitize()
86 final CharSequence sanitized = matcher.replaceAll(mSubst); in sanitize() local87 return AutofillValue.forText(sanitized); in sanitize()
79 …// // In SANITIZE_LITE mode, we create the sanitized binary in a separate location (but reu…81 …// // that depend on sanitized libraries will be relinked, even if they set LOCAL_SANITIZE …
851 LocationRequest.Builder sanitized = new LocationRequest.Builder(request); in validateLocationRequest() local856 sanitized.setLowPower(false); in validateLocationRequest()877 sanitized.setWorkSource(workSource); in validateLocationRequest()879 request = sanitized.build(); in validateLocationRequest()982 LastLocationRequest.Builder sanitized = new LastLocationRequest.Builder(request); in validateLastLocationRequest() local984 request = sanitized.build(); in validateLastLocationRequest()
3651 AutofillValue sanitized = state == null ? null : state.getSanitizedValue(); in getSanitizedValue() local3652 if (sanitized == null) { in getSanitizedValue()3658 sanitized = sanitizer.sanitize(value); in getSanitizedValue()3660 Slog.d(TAG, "Value for " + id + "(" + value + ") sanitized to " + sanitized); in getSanitizedValue()3663 state.setSanitizedValue(sanitized); in getSanitizedValue()3666 return sanitized; in getSanitizedValue()