Home | History | Annotate | Download | only in clinic

Lines Matching defs:hexstr

414 "a2b_hex($module, hexstr, /)\n"
419 "hexstr must contain an even number of hex digits (upper or lower case).\n"
426 binascii_a2b_hex_impl(PyObject *module, Py_buffer *hexstr);
432 Py_buffer hexstr = {NULL, NULL};
434 if (!PyArg_Parse(arg, "O&:a2b_hex", ascii_buffer_converter, &hexstr)) {
437 return_value = binascii_a2b_hex_impl(module, &hexstr);
440 /* Cleanup for hexstr */
441 if (hexstr.obj)
442 PyBuffer_Release(&hexstr);
448 "unhexlify($module, hexstr, /)\n"
453 "hexstr must contain an even number of hex digits (upper or lower case).");
459 binascii_unhexlify_impl(PyObject *module, Py_buffer *hexstr);
465 Py_buffer hexstr = {NULL, NULL};
467 if (!PyArg_Parse(arg, "O&:unhexlify", ascii_buffer_converter, &hexstr)) {
470 return_value = binascii_unhexlify_impl(module, &hexstr);
473 /* Cleanup for hexstr */
474 if (hexstr.obj)
475 PyBuffer_Release(&hexstr);