Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/mcux-sdk/utilities/misc_utilities/
Dfsl_syscall_stub.c117 int __attribute__((weak)) _open(const char *filename, int oflag);
118 int __attribute__((weak)) _open(const char *filename, int oflag) in _open() function
/hal_nxp-latest/mcux/mcux-sdk/scripts/kconfig/
Dkconfiglib.py1080 self._readline = self._open(join(self.srctree, filename), "r").readline
1578 with self._open(filename, "w") as f:
1853 auto_conf = self._open(join(path, "auto.conf"), "r")
2117 return self._open(filename, "r")
2122 return self._open(join(self.srctree, filename), "r")
2189 self._readline = self._open(filename, "r").readline
2275 with self._open(filename, "w") as f:
2284 with self._open(filename, "r") as f:
3887 def _open(self, filename, mode): member in Kconfig
Dguiconfig.py322 _root.bind("<Control-o>", _open)
440 ttk.Button(topframe, text="Open...", command=_open) \
1403 def _open(_=None): function