Home | History | Annotate | Download | only in servicemanager

Lines Matching refs:bs

10 void *svcmgr_lookup(struct binder_state *bs, void *target, const char *name)
21 if (binder_call(bs, &msg, &reply, target, SVC_MGR_CHECK_SERVICE))
27 binder_acquire(bs, ptr);
29 binder_done(bs, &msg, &reply);
34 int svcmgr_publish(struct binder_state *bs, void *target, const char *name, void *ptr)
46 if (binder_call(bs, &msg, &reply, target, SVC_MGR_ADD_SERVICE))
51 binder_done(bs, &msg, &reply);
61 struct binder_state *bs;
64 bs = binder_open(128*1024);
70 void *ptr = svcmgr_lookup(bs, svcmgr, "alt_svc_mgr");
83 ptr = svcmgr_lookup(bs, svcmgr, argv[1]);
92 svcmgr_publish(bs, svcmgr, argv[1], &token);