Home
last modified time | relevance | path

Searched refs:__mtime_cache (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/
H A D__init__.py49 __mtime_cache = {} variable
51 if f not in __mtime_cache:
52 __mtime_cache[f] = os.stat(f)[stat.ST_MTIME]
53 return __mtime_cache[f]
56 if f not in __mtime_cache:
58 __mtime_cache[f] = os.stat(f)[stat.ST_MTIME]
61 return __mtime_cache[f]
65 __mtime_cache[f] = os.stat(f)[stat.ST_MTIME]
67 if f in __mtime_cache:
68 del __mtime_cache[f]
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dbuild.py35 __mtime_cache = {} variable
38 if f not in __mtime_cache:
40 __mtime_cache[f] = os.stat(f)[stat.ST_MTIME]
43 return __mtime_cache[f]
46 global __mtime_cache
47 __mtime_cache = {}