Home
last modified time | relevance | path

Searched refs:cfunc (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Dtrace.py226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
/third_party/python/Modules/_decimal/tests/
Ddeccheck.py584 cfunc = "c_func: %s(" % t.funcname
591 cfunc = "c_func: %s.%s(" % (repr(cself), t.funcname)
595 err = cfunc
/third_party/quickjs/
Dquickjs.h984 JSCFunctionType cfunc; member
Dquickjs.c936 } cfunc; member
5048 p->u.cfunc.realm = JS_DupContext(ctx); in JS_NewCFunction3()
5049 p->u.cfunc.c_function.generic = func; in JS_NewCFunction3()
5050 p->u.cfunc.length = length; in JS_NewCFunction3()
5051 p->u.cfunc.cproto = cproto; in JS_NewCFunction3()
5052 p->u.cfunc.magic = magic; in JS_NewCFunction3()
5303 if (p->u.cfunc.realm) in js_c_function_finalizer()
5304 JS_FreeContext(p->u.cfunc.realm); in js_c_function_finalizer()
5312 if (p->u.cfunc.realm) in js_c_function_mark()
5313 mark_func(rt, &p->u.cfunc.realm->header); in js_c_function_mark()
[all …]
/third_party/python/Objects/
Dtypeobject.c5570 PyObject *cfunc = PyCFunction_NewEx(meth, (PyObject*)type, NULL); in type_add_method() local
5571 if (cfunc == NULL) { in type_add_method()
5574 descr = PyStaticMethod_New(cfunc); in type_add_method()
5576 Py_DECREF(cfunc); in type_add_method()