Lines Matching defs:path
633 "OpenDatabase($module, path, persist, /)\n"
638 " path\n"
647 _msi_OpenDatabase_impl(PyObject *module, const Py_UNICODE *path, int persist);
653 const Py_UNICODE *path = NULL;
664 path = _PyUnicode_AsUnicode(args[0]);
666 path = PyUnicode_AsWideCharString(args[0], NULL);
668 if (path == NULL) {
675 return_value = _msi_OpenDatabase_impl(module, path, persist);
678 /* Cleanup for path */
680 PyMem_Free((void *)path);