Home
last modified time | relevance | path

Searched refs:file_open (Results 1 – 11 of 11) sorted by relevance

/external/syslinux/core/fs/pxe/
Dgpxeurl.c66 static __lowmem struct s_PXENV_FILE_OPEN file_open; in gpxe_open() local
76 file_open.Status = PXENV_STATUS_BAD_FUNC; in gpxe_open()
77 file_open.FileName = FAR_PTR(lowurl); in gpxe_open()
78 err = pxe_call(PXENV_FILE_OPEN, &file_open); in gpxe_open()
84 socket->tftp_remoteport = file_open.FileHandle; in gpxe_open()
/external/syslinux/gpxe/src/arch/i386/interface/pxe/
Dpxe_file.c52 PXENV_EXIT_t pxenv_file_open ( struct s_PXENV_FILE_OPEN *file_open ) { in pxenv_file_open() argument
60 filename = real_to_user ( file_open->FileName.segment, in pxenv_file_open()
61 file_open->FileName.offset ); in pxenv_file_open()
73 file_open->Status = PXENV_STATUS ( fd ); in pxenv_file_open()
79 file_open->FileHandle = fd; in pxenv_file_open()
80 file_open->Status = PXENV_STATUS_SUCCESS; in pxenv_file_open()
Dpxe_call.c100 PXENV_EXIT_t ( * file_open ) ( struct s_PXENV_FILE_OPEN * ); member
287 pxenv_call.file_open = pxenv_file_open; in pxe_api_call()
288 param_len = sizeof ( pxenv_any.file_open ); in pxe_api_call()
/external/python/cpython2/Lib/idlelib/
DClassBrowser.py22 file_open = None # Method...Item and Class...Item use this. variable
33 global file_open
35 file_open = PyShell.flist.open
179 edit = file_open(self.file)
215 edit = file_open(self.file)
230 global file_open
231 file_open = flist.open
/external/syslinux/gpxe/src/include/
Dfs.h26 int file_open(const char *filename);
/external/syslinux/gpxe/src/arch/i386/include/
Dpxe.h63 struct s_PXENV_FILE_OPEN file_open; member
Dpxe_api.h1631 extern PXENV_EXIT_t pxenv_file_open ( struct s_PXENV_FILE_OPEN *file_open );
/external/fio/
Dgfio.c490 static void file_open(GtkWidget *w, gpointer data);
674 file_open(widget, ge->ui); in connect_clicked()
922 static void file_open(GtkWidget *w, gpointer data) in file_open() function
1262 { "OpenFile", GTK_STOCK_OPEN, NULL, "<Control>O", NULL, G_CALLBACK(file_open) },
/external/python/cpython2/Lib/test/
Dtest_urllib2.py709 r = h.file_open(Request(url))
742 h.file_open, Request(url))
765 h.file_open(req)
/external/python/cpython2/Lib/
Durllib2.py1329 def file_open(self, req): member in FileHandler
/external/python/cpython2/Doc/library/
Durllib2.rst877 .. method:: FileHandler.file_open(req)