Lines Matching refs:optionId

96 hrnCfgArgRaw(StringList *argList, ConfigOption optionId, const String *value)  in hrnCfgArgRaw()  argument
98 hrnCfgArgKeyRawZ(argList, optionId, 1, strZ(value)); in hrnCfgArgRaw()
102 hrnCfgArgKeyRaw(StringList *argList, ConfigOption optionId, unsigned optionKey, const String *value) in hrnCfgArgKeyRaw() argument
104 hrnCfgArgKeyRawZ(argList, optionId, optionKey, strZ(value)); in hrnCfgArgKeyRaw()
108 hrnCfgArgRawFmt(StringList *argList, ConfigOption optionId, const char *format, ...) in hrnCfgArgRawFmt() argument
117 hrnCfgArgKeyRawZ(argList, optionId, 1, buffer); in hrnCfgArgRawFmt()
121 hrnCfgArgKeyRawFmt(StringList *argList, ConfigOption optionId, unsigned optionKey, const char *form… in hrnCfgArgKeyRawFmt() argument
130 hrnCfgArgKeyRawZ(argList, optionId, optionKey, buffer); in hrnCfgArgKeyRawFmt()
134 hrnCfgArgRawZ(StringList *argList, ConfigOption optionId, const char *value) in hrnCfgArgRawZ() argument
136 hrnCfgArgKeyRawZ(argList, optionId, 1, value); in hrnCfgArgRawZ()
140 hrnCfgArgKeyRawZ(StringList *argList, ConfigOption optionId, unsigned optionKey, const char *value) in hrnCfgArgKeyRawZ() argument
142 …strLstAdd(argList, strNewFmt("--%s=%s", cfgParseOptionKeyIdxName(optionId, optionKey - 1), value)); in hrnCfgArgKeyRawZ()
146 hrnCfgArgRawStrId(StringList *argList, ConfigOption optionId, StringId value) in hrnCfgArgRawStrId() argument
148 hrnCfgArgKeyRawStrId(argList, optionId, 1, value); in hrnCfgArgRawStrId()
152 hrnCfgArgKeyRawStrId(StringList *argList, ConfigOption optionId, unsigned optionKey, StringId value) in hrnCfgArgKeyRawStrId() argument
157 hrnCfgArgKeyRawZ(argList, optionId, optionKey, buffer); in hrnCfgArgKeyRawStrId()
161 hrnCfgArgRawBool(StringList *argList, ConfigOption optionId, bool value) in hrnCfgArgRawBool() argument
163 hrnCfgArgKeyRawBool(argList, optionId, 1, value); in hrnCfgArgRawBool()
167 hrnCfgArgKeyRawBool(StringList *argList, ConfigOption optionId, unsigned optionKey, bool value) in hrnCfgArgKeyRawBool() argument
169 …strLstAdd(argList, strNewFmt("--%s%s", value ? "" : "no-", cfgParseOptionKeyIdxName(optionId, opti… in hrnCfgArgKeyRawBool()
173 hrnCfgArgRawNegate(StringList *argList, ConfigOption optionId) in hrnCfgArgRawNegate() argument
175 hrnCfgArgKeyRawNegate(argList, optionId, 1); in hrnCfgArgRawNegate()
179 hrnCfgArgKeyRawNegate(StringList *argList, ConfigOption optionId, unsigned optionKey) in hrnCfgArgKeyRawNegate() argument
181 strLstAdd(argList, strNewFmt("--no-%s", cfgParseOptionKeyIdxName(optionId, optionKey - 1))); in hrnCfgArgKeyRawNegate()
185 hrnCfgArgRawReset(StringList *argList, ConfigOption optionId) in hrnCfgArgRawReset() argument
187 hrnCfgArgKeyRawReset(argList, optionId, 1); in hrnCfgArgRawReset()
191 hrnCfgArgKeyRawReset(StringList *argList, ConfigOption optionId, unsigned optionKey) in hrnCfgArgKeyRawReset() argument
193 strLstAdd(argList, strNewFmt("--reset-%s", cfgParseOptionKeyIdxName(optionId, optionKey - 1))); in hrnCfgArgKeyRawReset()
198 hrnCfgEnvName(const ConfigOption optionId, const unsigned optionKey) in hrnCfgEnvName() argument
201 …strReplaceChr(strUpper(strNewFmt(HRN_PGBACKREST_ENV "%s", cfgParseOptionKeyIdxName(optionId, optio… in hrnCfgEnvName()
205 hrnCfgEnvRaw(ConfigOption optionId, const String *value) in hrnCfgEnvRaw() argument
207 hrnCfgEnvKeyRawZ(optionId, 1, strZ(value)); in hrnCfgEnvRaw()
211 hrnCfgEnvKeyRaw(ConfigOption optionId, unsigned optionKey, const String *value) in hrnCfgEnvKeyRaw() argument
213 hrnCfgEnvKeyRawZ(optionId, optionKey, strZ(value)); in hrnCfgEnvKeyRaw()
217 hrnCfgEnvRawZ(ConfigOption optionId, const char *value) in hrnCfgEnvRawZ() argument
219 hrnCfgEnvKeyRawZ(optionId, 1, value); in hrnCfgEnvRawZ()
223 hrnCfgEnvKeyRawZ(ConfigOption optionId, unsigned optionKey, const char *value) in hrnCfgEnvKeyRawZ() argument
225 setenv(hrnCfgEnvName(optionId, optionKey), value, true); in hrnCfgEnvKeyRawZ()
229 hrnCfgEnvRemoveRaw(ConfigOption optionId) in hrnCfgEnvRemoveRaw() argument
231 hrnCfgEnvKeyRemoveRaw(optionId, 1); in hrnCfgEnvRemoveRaw()
235 hrnCfgEnvKeyRemoveRaw(ConfigOption optionId, unsigned optionKey) in hrnCfgEnvKeyRemoveRaw() argument
237 unsetenv(hrnCfgEnvName(optionId, optionKey)); in hrnCfgEnvKeyRemoveRaw()