Lines Matching refs:ResTable_config

83     return config->inputFlags&ResTable_config::MASK_KEYSHIDDEN;  in AConfiguration_getKeysHidden()
87 return (config->inputFlags&ResTable_config::MASK_NAVHIDDEN) in AConfiguration_getNavHidden()
88 >> ResTable_config::SHIFT_NAVHIDDEN; in AConfiguration_getNavHidden()
96 return config->screenLayout&ResTable_config::MASK_SCREENSIZE; in AConfiguration_getScreenSize()
100 return (config->screenLayout&ResTable_config::MASK_SCREENLONG) in AConfiguration_getScreenLong()
101 >> ResTable_config::SHIFT_SCREENLONG; in AConfiguration_getScreenLong()
105 return (config->screenLayout2&ResTable_config::MASK_SCREENROUND); in AConfiguration_getScreenRound()
109 return config->uiMode&ResTable_config::MASK_UI_MODE_TYPE; in AConfiguration_getUiModeType()
113 return (config->uiMode&ResTable_config::MASK_UI_MODE_NIGHT) in AConfiguration_getUiModeNight()
114 >> ResTable_config::SHIFT_UI_MODE_NIGHT; in AConfiguration_getUiModeNight()
131 return (config->screenLayout&ResTable_config::MASK_LAYOUTDIR) in AConfiguration_getLayoutDirection()
132 >> ResTable_config::SHIFT_LAYOUTDIR; in AConfiguration_getLayoutDirection()
176 config->inputFlags = (config->inputFlags&~ResTable_config::MASK_KEYSHIDDEN) in AConfiguration_setKeysHidden()
177 | (keysHidden&ResTable_config::MASK_KEYSHIDDEN); in AConfiguration_setKeysHidden()
181 config->inputFlags = (config->inputFlags&~ResTable_config::MASK_NAVHIDDEN) in AConfiguration_setNavHidden()
182 | ((navHidden<<ResTable_config::SHIFT_NAVHIDDEN)&ResTable_config::MASK_NAVHIDDEN); in AConfiguration_setNavHidden()
190 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENSIZE) in AConfiguration_setScreenSize()
191 | (screenSize&ResTable_config::MASK_SCREENSIZE); in AConfiguration_setScreenSize()
195 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG) in AConfiguration_setScreenLong()
196 | ((screenLong<<ResTable_config::SHIFT_SCREENLONG)&ResTable_config::MASK_SCREENLONG); in AConfiguration_setScreenLong()
200 config->screenLayout2 = (config->screenLayout2&~ResTable_config::MASK_SCREENROUND) in AConfiguration_setScreenRound()
201 | (screenRound&ResTable_config::MASK_SCREENROUND); in AConfiguration_setScreenRound()
205 config->uiMode = (config->uiMode&~ResTable_config::MASK_UI_MODE_TYPE) in AConfiguration_setUiModeType()
206 | (uiModeType&ResTable_config::MASK_UI_MODE_TYPE); in AConfiguration_setUiModeType()
210 config->uiMode = (config->uiMode&~ResTable_config::MASK_UI_MODE_NIGHT) in AConfiguration_setUiModeNight()
211 … | ((uiModeNight<<ResTable_config::SHIFT_UI_MODE_NIGHT)&ResTable_config::MASK_UI_MODE_NIGHT); in AConfiguration_setUiModeNight()
228 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_LAYOUTDIR) in AConfiguration_setLayoutDirection()
229 | ((value<<ResTable_config::SHIFT_LAYOUTDIR)&ResTable_config::MASK_LAYOUTDIR); in AConfiguration_setLayoutDirection()