Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/bitbake/lib/bb/parse/
H A D__init__.py49 __mtime_cache = {} variable
51 if f not in __mtime_cache:
53 return __mtime_cache[f]
56 if f not in __mtime_cache:
61 return __mtime_cache[f]
75 if f in __mtime_cache:
76 del __mtime_cache[f]
78 return __mtime_cache[f]
81 if f in __mtime_cache:
86 global __mtime_cache
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dbuild.py37 __mtime_cache = {} variable
40 if f not in __mtime_cache:
42 __mtime_cache[f] = os.stat(f)[stat.ST_MTIME]
45 return __mtime_cache[f]
48 global __mtime_cache
49 __mtime_cache = {}