Lines Matching defs:mode
224 By default, the node operation mode is 'merge+create', i.e., if
227 'merge+create' operation mode is specified with the prefix character plus (+).
229 The operation mode 'merge' merges the node with the old one (which must
231 and so on. This mode is specified with the prefix character minus (-).
233 The operation mode 'do not override' ignores a new configuration node
234 if a configuration node with the same name exists. This mode is specified with
237 The operation mode 'override' always overrides the old configuration node
238 with new contents. This mode is specified with the prefix character
1370 enum {MERGE_CREATE, MERGE, OVERRIDE, DONT_OVERRIDE} mode;
1377 mode = MERGE_CREATE;
1380 mode = MERGE;
1383 mode = DONT_OVERRIDE;
1386 mode = OVERRIDE;
1389 mode = !override ? MERGE_CREATE : OVERRIDE;
1403 if (mode == DONT_OVERRIDE) {
1408 if (mode != OVERRIDE) {
1420 if (mode == MERGE) {
1438 if (mode == DONT_OVERRIDE) {
1441 } else if (mode == OVERRIDE) {
1447 if (mode == MERGE) {
2110 * #snd_config_load, but the default mode for input nodes is 'override'