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