Lines Matching refs:config
6 config = ConfigFile()
7 if 'MBEDTLS_RSA_C' in config: print('RSA is enabled')
48 * `name in config` is `True` if the symbol `name` is active, `False`
50 * `config[name]` is the value of the macro `name`. If `name` is inactive,
52 * `config[name] = value` sets the value associated to `name`. `name`
154 """Is this section affected by "config.py full" and friends?"""
571 config = ConfigFile(args.file)
576 if args.symbol in config:
577 value = config[args.symbol]
580 return 0 if args.symbol in config else 1
582 if not args.force and args.symbol not in config.settings:
585 .format(args.symbol, config.filename))
587 config.set(args.symbol, value=args.value)
589 config.change_matching(args.regexs, True)
591 config.unset(args.symbol)
593 config.change_matching(args.regexs, False)
595 config.adapt(args.adapter)
596 config.write(args.write)