Searched refs:VISIBILITY_VALUE (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountsDb.java | 79 private static final String VISIBILITY_VALUE = "value"; field in AccountsDb 563 + VISIBILITY_VALUE + " INTEGER, " in createAccountsVisibilityTable() 907 values.put(VISIBILITY_VALUE, String.valueOf(visibility)); in setAccountVisibility() 908 return (db.replace(TABLE_VISIBILITY, VISIBILITY_VALUE, values) != -1); in setAccountVisibility() 913 final Cursor cursor = db.query(TABLE_VISIBILITY, new String[] {VISIBILITY_VALUE}, in findAccountVisibility() 928 final Cursor cursor = db.query(TABLE_VISIBILITY, new String[] {VISIBILITY_VALUE}, in findAccountVisibility() 962 db.query(TABLE_VISIBILITY, new String[] {VISIBILITY_PACKAGE, VISIBILITY_VALUE}, in findAllVisibilityValuesForAccount() 983 + ", " + TABLE_VISIBILITY + "." + VISIBILITY_VALUE in findAllVisibilityValues()
|