Home
last modified time | relevance | path

Searched refs:readfunc (Results 1 – 23 of 23) sorted by relevance

/external/u-boot/scripts/coccinelle/net/
Dmdio_register.cocci12 identifier readfunc, writefunc;
16 - miiphy_register(devname, readfunc, writefunc);
20 + mdiodev->read = readfunc;
27 identifier mii_reg.readfunc;
32 - readfunc (
38 + readfunc (
49 identifier mii_reg.readfunc;
57 readfunc (...)
81 identifier mii_reg.readfunc;
85 readfunc (...)
[all …]
/external/elfutils/backends/
Ds390_unwind.c47 ebl_tid_registers_get_t *getfunc, ebl_pid_memory_read_t *readfunc, in s390_unwind() argument
57 if (! readfunc (pc, &instr, arg)) in s390_unwind()
78 if (! readfunc (next_cfa + 8, &sigreg_ptr, arg)) in s390_unwind()
84 if (! readfunc (sigreg_ptr, &val, arg)) in s390_unwind()
93 if (! readfunc (sigreg_ptr, &gprs[i], arg)) in s390_unwind()
106 if (! readfunc (sigreg_ptr, &val, arg)) in s390_unwind()
111 if (! readfunc (sigreg_ptr + 4, &val_low, arg)) in s390_unwind()
125 if (! readfunc (sigreg_ptr, &val, arg)) in s390_unwind()
Dppc64_unwind.c50 ebl_pid_memory_read_t *readfunc, void *arg, in EBLHOOK()
65 if (! readfunc(sp, &newSp, arg)) in EBLHOOK()
68 if (! readfunc(newSp + LR_OFFSET, &newLr, arg)) in EBLHOOK()
Dx86_64_unwind.c45 ebl_pid_memory_read_t *readfunc, void *arg, in x86_64_unwind() argument
62 if (!readfunc(fp, &prev_fp, arg)) in x86_64_unwind()
66 if (!readfunc(fp + 8, &ret, arg)) in x86_64_unwind()
Di386_unwind.c50 ebl_pid_memory_read_t *readfunc, void *arg, in i386_unwind() argument
69 if (! readfunc (fp + 4, &ret_addr, arg) || ret_addr == 0) in i386_unwind()
74 if (! readfunc (fp, &fp, arg) || fp == 0 || sp >= fp) in i386_unwind()
Daarch64_unwind.c48 ebl_pid_memory_read_t *readfunc, void *arg, in EBLHOOK()
67 if (!readfunc(fp + LR_OFFSET, &newLr, arg)) in EBLHOOK()
70 if (!readfunc(fp + FP_OFFSET, &newFp, arg)) in EBLHOOK()
/external/elfutils/libebl/
Deblunwind.c37 ebl_tid_registers_get_t *getfunc, ebl_pid_memory_read_t *readfunc, in ebl_unwind() argument
43 return ebl->unwind (ebl, pc, setfunc, getfunc, readfunc, arg, signal_framep); in ebl_unwind()
Debl-hooks.h183 ebl_pid_memory_read_t *readfunc, void *arg,
Dlibebl.h395 ebl_pid_memory_read_t *readfunc, void *arg,
/external/python/cpython2/Lib/
Dcode.py284 def interact(banner=None, readfunc=None, local=None): argument
299 if readfunc is not None:
300 console.raw_input = readfunc
/external/python/cpython3/Lib/
Dcode.py278 def interact(banner=None, readfunc=None, local=None, exitmsg=None): argument
294 if readfunc is not None:
295 console.raw_input = readfunc
/external/curl/docs/examples/
Dsftpuploadresume.c32 static size_t readfunc(void *ptr, size_t size, size_t nmemb, void *stream) in readfunc() function
97 curl_easy_setopt(curlhandle, CURLOPT_READFUNCTION, readfunc); in sftpResumeUpload()
Dftpuploadresume.c54 static size_t readfunc(void *ptr, size_t size, size_t nmemb, void *stream) in readfunc() function
94 curl_easy_setopt(curlhandle, CURLOPT_READFUNCTION, readfunc); in upload()
/external/curl/lib/
Dmime.c743 if(part->readfunc) in read_part_content()
744 sz = part->readfunc(buffer, 1, bufsize, part->arg); in read_part_content()
1067 part->readfunc = NULL; in cleanup_part_content()
1154 res = curl_mime_data_cb(dst, src->datasize, src->readfunc, in Curl_mime_duppart()
1328 part->readfunc = mime_mem_read; in curl_mime_data()
1364 part->readfunc = mime_file_read; in curl_mime_filedata()
1447 curl_read_callback readfunc, in curl_mime_data_cb() argument
1456 if(readfunc) { in curl_mime_data_cb()
1457 part->readfunc = readfunc; in curl_mime_data_cb()
1505 part->readfunc = mime_subparts_read; in Curl_mime_set_subparts()
[all …]
Dmime.h113 curl_read_callback readfunc; /* Read function. */ member
Dtransfer.c160 curl_read_callback readfunc = NULL; in Curl_fillreadbuffer() local
233 readfunc = Curl_trailers_read; in Curl_fillreadbuffer()
239 readfunc = data->state.fread_func; in Curl_fillreadbuffer()
244 nread = readfunc(data->req.upload_fromhere, 1, in Curl_fillreadbuffer()
/external/python/cpython2/Doc/library/
Dcode.rst32 .. function:: interact([banner[, readfunc[, local]]])
35 of :class:`InteractiveConsole` and sets *readfunc* to be used as the
/external/elfutils/libdwfl/
Dframe_unwind.c703 readfunc (Dwarf_Addr addr, Dwarf_Word *datap, void *arg) in readfunc() function
760 if (! ebl_unwind (ebl, pc, setfunc, getfunc, readfunc, state, &signal_frame)) in __libdwfl_frame_unwind()
DChangeLog1145 (setfunc, getfunc, readfunc): New functions.
/external/python/cpython3/Doc/library/
Dcode.rst33 .. function:: interact(banner=None, readfunc=None, local=None, exitmsg=None)
36 instance of :class:`InteractiveConsole` and sets *readfunc* to be used as
/external/python/cpython3/Lib/test/
Dtest_httplib.py1337 def __init__(self, readfunc): argument
1338 self.readfunc = readfunc
1354 read = self.readfunc()
/external/curl/include/curl/
Dcurl.h2185 curl_read_callback readfunc,
/external/curl/packages/OS400/
Dcurl.inc.in2213 d readfunc value like(curl_read_callback)