Home
last modified time | relevance | path

Searched refs:new_obj (Results 1 – 6 of 6) sorted by relevance

/external/grpc-grpc/tools/debug/core/
Dchttp2_ref_leak.py24 def new_obj(): function
28 outstanding = collections.defaultdict(new_obj)
/external/python/cpython2/Lib/multiprocessing/
Dsharedctypes.py130 new_obj = _new_value(type(obj))
131 ctypes.pointer(new_obj)[0] = obj
132 return new_obj
/external/python/cpython3/Lib/multiprocessing/
Dsharedctypes.py99 new_obj = _new_value(type(obj))
100 ctypes.pointer(new_obj)[0] = obj
101 return new_obj
/external/v8/src/builtins/
Dbuiltins-arraybuffer.cc200 Handle<Object> new_obj; in SliceHelper() local
202 isolate, new_obj, Execution::New(isolate, ctor, argc, argv.start())); in SliceHelper()
204 new_ = Handle<JSReceiver>::cast(new_obj); in SliceHelper()
Dbuiltins-proxy-gen.cc375 Node* new_obj = CallJS(CodeFactory::Call(isolate()), context, trap, handler, in TF_BUILTIN() local
379 GotoIf(TaggedIsSmi(new_obj), &not_an_object); in TF_BUILTIN()
380 GotoIfNot(IsJSReceiver(new_obj), &not_an_object); in TF_BUILTIN()
383 args.PopAndReturn(new_obj); in TF_BUILTIN()
387 ThrowTypeError(context, MessageTemplate::kProxyConstructNonObject, new_obj); in TF_BUILTIN()
/external/libnl/lib/route/
Droute_obj.c449 static int route_update(struct nl_object *old_obj, struct nl_object *new_obj) in route_update() argument
451 struct rtnl_route *new_route = (struct rtnl_route *) new_obj; in route_update()
454 int action = new_obj->ce_msgtype; in route_update()
539 "to object %p during route update\n", new_obj); in route_update()