Lines Matching refs:ResTable_config

39     ResTable_config config = locked_mgr->GetConfiguration();  in AConfiguration_fromAssetManager()
88 return config->inputFlags&ResTable_config::MASK_KEYSHIDDEN; in AConfiguration_getKeysHidden()
92 return (config->inputFlags&ResTable_config::MASK_NAVHIDDEN) in AConfiguration_getNavHidden()
93 >> ResTable_config::SHIFT_NAVHIDDEN; in AConfiguration_getNavHidden()
101 return config->screenLayout&ResTable_config::MASK_SCREENSIZE; in AConfiguration_getScreenSize()
105 return (config->screenLayout&ResTable_config::MASK_SCREENLONG) in AConfiguration_getScreenLong()
106 >> ResTable_config::SHIFT_SCREENLONG; in AConfiguration_getScreenLong()
110 return (config->screenLayout2&ResTable_config::MASK_SCREENROUND); in AConfiguration_getScreenRound()
114 return config->uiMode&ResTable_config::MASK_UI_MODE_TYPE; in AConfiguration_getUiModeType()
118 return (config->uiMode&ResTable_config::MASK_UI_MODE_NIGHT) in AConfiguration_getUiModeNight()
119 >> ResTable_config::SHIFT_UI_MODE_NIGHT; in AConfiguration_getUiModeNight()
136 return (config->screenLayout&ResTable_config::MASK_LAYOUTDIR) in AConfiguration_getLayoutDirection()
137 >> ResTable_config::SHIFT_LAYOUTDIR; in AConfiguration_getLayoutDirection()
181 config->inputFlags = (config->inputFlags&~ResTable_config::MASK_KEYSHIDDEN) in AConfiguration_setKeysHidden()
182 | (keysHidden&ResTable_config::MASK_KEYSHIDDEN); in AConfiguration_setKeysHidden()
186 config->inputFlags = (config->inputFlags&~ResTable_config::MASK_NAVHIDDEN) in AConfiguration_setNavHidden()
187 | ((navHidden<<ResTable_config::SHIFT_NAVHIDDEN)&ResTable_config::MASK_NAVHIDDEN); in AConfiguration_setNavHidden()
195 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENSIZE) in AConfiguration_setScreenSize()
196 | (screenSize&ResTable_config::MASK_SCREENSIZE); in AConfiguration_setScreenSize()
200 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG) in AConfiguration_setScreenLong()
201 | ((screenLong<<ResTable_config::SHIFT_SCREENLONG)&ResTable_config::MASK_SCREENLONG); in AConfiguration_setScreenLong()
205 config->screenLayout2 = (config->screenLayout2&~ResTable_config::MASK_SCREENROUND) in AConfiguration_setScreenRound()
206 | (screenRound&ResTable_config::MASK_SCREENROUND); in AConfiguration_setScreenRound()
210 config->uiMode = (config->uiMode&~ResTable_config::MASK_UI_MODE_TYPE) in AConfiguration_setUiModeType()
211 | (uiModeType&ResTable_config::MASK_UI_MODE_TYPE); in AConfiguration_setUiModeType()
215 config->uiMode = (config->uiMode&~ResTable_config::MASK_UI_MODE_NIGHT) in AConfiguration_setUiModeNight()
216 … | ((uiModeNight<<ResTable_config::SHIFT_UI_MODE_NIGHT)&ResTable_config::MASK_UI_MODE_NIGHT); in AConfiguration_setUiModeNight()
233 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_LAYOUTDIR) in AConfiguration_setLayoutDirection()
234 | ((value<<ResTable_config::SHIFT_LAYOUTDIR)&ResTable_config::MASK_LAYOUTDIR); in AConfiguration_setLayoutDirection()