Home
last modified time | relevance | path

Searched refs:f_mode (Results 1 – 4 of 4) sorted by relevance

/external/iputils/
Dtftpd.c206 char *f_mode; member
249 for (pf = formats; pf->f_mode; pf++) in tftp()
250 if (strcmp(pf->f_mode, mode) == 0) in tftp()
252 if (pf->f_mode == 0) { in tftp()
/external/python/cpython2/Include/
Dfileobject.h14 PyObject *f_mode; member
/external/curl/tests/server/
Dtftpd.c117 const char *f_mode; member
1030 for(pf = formata; pf->f_mode; pf++) in do_tftp()
1031 if(strcmp(pf->f_mode, mode) == 0) in do_tftp()
1033 if(!pf->f_mode) { in do_tftp()
/external/python/cpython2/Objects/
Dfileobject.c155 Py_DECREF(f->f_mode); in fill_file_fields()
162 f->f_mode = PyString_FromString(mode); in fill_file_fields()
183 if (f->f_mode == NULL) in fill_file_fields()
637 Py_XDECREF(f->f_mode); in file_dealloc()
657 PyString_AsString(f->f_mode), in file_repr()
669 PyString_AsString(f->f_mode), in file_repr()
2162 {"mode", T_OBJECT, OFF(f_mode), RO,
2406 ((PyFileObject *)self)->f_mode = not_yet_string; in file_new()