Lines Matching refs:args
49 static PyObject* encode_impl(PyObject* args) { in encode_impl() argument
50 if (!args) in encode_impl()
55 if (!PyArg_ParseTuple(args, "OO", &enc_obj, &type_args)) { in encode_impl()
81 static PyObject* decode_impl(PyObject* args) { in decode_impl() argument
85 if (!PyArg_ParseTuple(args, "OOO", &output_obj, &oprot, &typeargs)) { in decode_impl()
123 static PyObject* encode_binary(PyObject*, PyObject* args) { in encode_binary() argument
124 return encode_impl<BinaryProtocol>(args); in encode_binary()
127 static PyObject* decode_binary(PyObject*, PyObject* args) { in decode_binary() argument
128 return decode_impl<BinaryProtocol>(args); in decode_binary()
131 static PyObject* encode_compact(PyObject*, PyObject* args) { in encode_compact() argument
132 return encode_impl<CompactProtocol>(args); in encode_compact()
135 static PyObject* decode_compact(PyObject*, PyObject* args) { in decode_compact() argument
136 return decode_impl<CompactProtocol>(args); in decode_compact()