Lines Matching refs:logfilename
77 PyObject *logfilename; member
565 char *s = PyString_AsString(self->logfilename); in flush_data()
573 char *s = PyString_AsString(self->logfilename); in flush_data()
1170 Py_XDECREF(self->logfilename); in profiler_dealloc()
1498 char *logfilename; in hotshot_profiler() local
1503 if (PyArg_ParseTuple(args, "s|ii:profiler", &logfilename, in hotshot_profiler()
1515 self->logfilename = PyTuple_GET_ITEM(args, 0); in hotshot_profiler()
1516 Py_INCREF(self->logfilename); in hotshot_profiler()
1522 self->logfp = fopen(logfilename, "wb"); in hotshot_profiler()
1525 PyErr_SetFromErrnoWithFilename(PyExc_IOError, logfilename); in hotshot_profiler()
1554 char *logfilename; in hotshot_coverage() local
1557 if (PyArg_ParseTuple(args, "s:coverage", &logfilename)) { in hotshot_coverage()