Home
last modified time | relevance | path

Searched refs:msgbuf (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dgetargs.c215 char msgbuf[256]; in vgetargs1() local
286 PyOS_snprintf(msgbuf, sizeof(msgbuf), in vgetargs1()
290 PyErr_SetString(PyExc_TypeError, msgbuf); in vgetargs1()
295 PyOS_snprintf(msgbuf, sizeof(msgbuf), in vgetargs1()
299 PyErr_SetString(PyExc_TypeError, msgbuf); in vgetargs1()
303 msgbuf, sizeof(msgbuf), &freelist); in vgetargs1()
326 PyOS_snprintf(msgbuf, sizeof(msgbuf), in vgetargs1()
336 message = msgbuf; in vgetargs1()
346 flags, levels, msgbuf, in vgetargs1()
347 sizeof(msgbuf), &freelist); in vgetargs1()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dgetargs.c215 char msgbuf[256]; in vgetargs1() local
286 PyOS_snprintf(msgbuf, sizeof(msgbuf), in vgetargs1()
290 PyErr_SetString(PyExc_TypeError, msgbuf); in vgetargs1()
295 PyOS_snprintf(msgbuf, sizeof(msgbuf), in vgetargs1()
299 PyErr_SetString(PyExc_TypeError, msgbuf); in vgetargs1()
303 msgbuf, sizeof(msgbuf), &freelist); in vgetargs1()
326 PyOS_snprintf(msgbuf, sizeof(msgbuf), in vgetargs1()
336 message = msgbuf; in vgetargs1()
346 flags, levels, msgbuf, in vgetargs1()
347 sizeof(msgbuf), &freelist); in vgetargs1()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dminigzip.c85 wchar_t *msgbuf; local
92 (LPVOID)&msgbuf,
98 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
100 msgbuf[chars] = 0;
105 msgbuf[chars] = 0;
108 wcstombs(buf, msgbuf, chars + 1);
109 LocalFree(msgbuf);
Dgzlib.c38 wchar_t *msgbuf; local
45 (LPVOID)&msgbuf,
51 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
53 msgbuf[chars] = 0;
58 msgbuf[chars] = 0;
61 wcstombs(buf, msgbuf, chars + 1);
62 LocalFree(msgbuf);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dobmalloc.c1546 char msgbuf[64]; in _PyObject_DebugCheckAddressApi() local
1561 msg = msgbuf; in _PyObject_DebugCheckAddressApi()
1562 …snprintf(msg, sizeof(msgbuf), "bad ID: Allocated using API '%c', verified using API '%c'", id, api… in _PyObject_DebugCheckAddressApi()
1563 msgbuf[sizeof(msgbuf)-1] = 0; in _PyObject_DebugCheckAddressApi()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dobmalloc.c1595 char msgbuf[64]; in _PyObject_DebugCheckAddressApi() local
1610 msg = msgbuf; in _PyObject_DebugCheckAddressApi()
1611 …snprintf(msg, sizeof(msgbuf), "bad ID: Allocated using API '%c', verified using API '%c'", id, api… in _PyObject_DebugCheckAddressApi()
1612 msgbuf[sizeof(msgbuf)-1] = 0; in _PyObject_DebugCheckAddressApi()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dposixmodule.c612 os2_formatmsg(char *msgbuf, int msglen, char *reason) in os2_formatmsg() argument
614 msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */ in os2_formatmsg()
616 if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */ in os2_formatmsg()
617 char *lastc = &msgbuf[ strlen(msgbuf)-1 ]; in os2_formatmsg()
619 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc))) in os2_formatmsg()
625 strcat(msgbuf, " : "); in os2_formatmsg()
626 strcat(msgbuf, reason); in os2_formatmsg()
642 os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason) in os2_strerror() argument
649 rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen, in os2_strerror()
654 os2_formatmsg(msgbuf, msglen, reason); in os2_strerror()
[all …]