Searched refs:bio (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/cmds/servicemanager/ |
D | binder.c | 194 int binder_parse(struct binder_state *bs, struct binder_io *bio, in binder_parse() argument 247 if (bio) { in binder_parse() 248 bio_init_from_txn(bio, txn); in binder_parse() 249 bio = 0; in binder_parse() 394 void bio_init_from_txn(struct binder_io *bio, struct binder_txn *txn) in bio_init_from_txn() argument 396 bio->data = bio->data0 = txn->data; in bio_init_from_txn() 397 bio->offs = bio->offs0 = txn->offs; in bio_init_from_txn() 398 bio->data_avail = txn->data_size; in bio_init_from_txn() 399 bio->offs_avail = txn->offs_size / 4; in bio_init_from_txn() 400 bio->flags = BIO_F_SHARED; in bio_init_from_txn() [all …]
|
D | binder.h | 103 void bio_init(struct binder_io *bio, void *data, 106 void bio_destroy(struct binder_io *bio); 108 void bio_put_obj(struct binder_io *bio, void *ptr); 109 void bio_put_ref(struct binder_io *bio, void *ptr); 110 void bio_put_uint32(struct binder_io *bio, uint32_t n); 111 void bio_put_string16(struct binder_io *bio, const uint16_t *str); 112 void bio_put_string16_x(struct binder_io *bio, const char *_str); 114 uint32_t bio_get_uint32(struct binder_io *bio); 115 uint16_t *bio_get_string16(struct binder_io *bio, uint32_t *sz); 116 void *bio_get_obj(struct binder_io *bio); [all …]
|