Home
last modified time | relevance | path

Searched refs:cursect (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
DConfigParser.py474 cursect = None # None, or a dictionary
490 if line[0].isspace() and cursect is not None and optname:
493 cursect[optname].append(value)
501 cursect = self._sections[sectname]
503 cursect = self._defaults
505 cursect = self._dict()
506 cursect['__name__'] = sectname
507 self._sections[sectname] = cursect
511 elif cursect is None:
532 cursect[optname] = [optval]
[all …]
/external/python/cpython3/Lib/
Dconfigparser.py1008 cursect = None # None, or a dictionary
1041 cursect is not None and
1043 cursect[optname] is not None):
1044 cursect[optname].append('') # newlines added at join
1052 if (cursect is not None and optname and
1054 cursect[optname].append(value)
1066 cursect = self._sections[sectname]
1069 cursect = self._defaults
1071 cursect = self._dict()
1072 self._sections[sectname] = cursect
[all …]
/external/u-boot/fs/fat/
Dfat_write.c912 int cursect; in do_fat_write() local
935 cursect = mydata->rootdir_sect in do_fat_write()
965 if (disk_read(cursect, in do_fat_write()