CyanogenMod 源代码中的哪里存储了“移动数据”和“数据漫游”设置的默认值?

Where in the source code CyanogenMod stores default values of “Mobile data” and “Data roaming” settings?

CyanogenMod 12.1 源代码中的哪个配置文件存储了“移动数据”和“数据漫游”设置的全局(非覆盖)默认值?

在 CyanogenMod/android_frameworks_base/packages/SettingsProvider/res/values/customize.xml 文件中:

<!-- Default for Settings.Global.DATA_ROAMING -->
<bool name="def_enable_data_roaming">false</bool>

<!-- Default for Settings.Global.MOBILE_DATA -->
<bool name="def_enable_mobile_data">true</bool>