Lines Matching defs:obj
350 PyObject *obj = NULL, *list = NULL;
370 obj = _PyLong_FromLong(val);
372 obj = PyLong_FromLongLong(val);
375 obj = _PyLong_FromLong(val);
377 obj = PyLong_FromUnsignedLongLong(val);
380 PyList_SET_ITEM(list, i, obj);
383 obj = list;
384 return obj;
935 PyObject *handler, *context, *t, *obj = NULL, *callchain;
1025 obj = _PyUnicode_FromString((char *) data + offset);
1027 obj = PyByteArray_FromStringAndSize((const char *) data + offset, len);
1031 obj = get_field_numeric_entry(event, field, data);
1034 PyTuple_SetItem(t, n++, obj);
1036 pydict_set_item_string_decref(dict, field->name, obj);