Lines Matching refs:flag
113 * Fetches the current setting of a given config flag.
117 * @param flag Flag to fetch.
118 * @return result OK successfully fetched the flag.
119 * INVALID_STATE if the flag is not applicable right now.
120 * NOT_SUPPORTED if the flag is not supported at all.
121 * @return value The current value of the flag, if result is OK.
123 isConfigFlagSet(ConfigFlag flag) generates (Result result, bool value);
126 * Sets the config flag.
130 * @param flag Flag to set.
131 * @param value The new value of a given flag.
132 * @return result OK successfully set the flag.
133 * INVALID_STATE if the flag is not applicable right now.
134 * NOT_SUPPORTED if the flag is not supported at all.
136 setConfigFlag(ConfigFlag flag, bool value) generates (Result result);