Home
last modified time | relevance | path

Searched refs:bio (Results 1 – 4 of 4) sorted by relevance

/developtools/profiler/device/plugins/hiebpf_plugin/tools/src/
Debpf_converter.cpp360 EventBIO bio = {}; in EventBIOParsing() local
361 CHK(Read(reinterpret_cast<void*>(&bio), EVENT_BIO_FIXED_SIZE)); in EventBIOParsing()
362 uint64_t userIPs[bio.nips]; in EventBIOParsing()
363 if (bio.nips > 0) { in EventBIOParsing()
365 bio.userIPs = std::vector<uint64_t>(userIPs, userIPs + bio.nips); in EventBIOParsing()
370 << " tag: " << bio.tag << '\n' in EventBIOParsing()
371 << " len: " << bio.len << '\n' in EventBIOParsing()
372 << " pid: " << bio.pid << '\n' in EventBIOParsing()
373 << " tid: " << bio.tid << '\n' in EventBIOParsing()
374 << " comm: " << bio.comm << '\n' in EventBIOParsing()
[all …]
/developtools/hdc/src/common/
Dauth.cpp591 BIO *bio = nullptr; in LoadPublicKey() local
606 bio = BIO_new(BIO_s_mem()); in LoadPublicKey()
607 if (!bio) { in LoadPublicKey()
611 if (!PEM_write_bio_PUBKEY(bio, evp)) { in LoadPublicKey()
617 if (BIO_read_ex(bio, buf, sizeof(buf), &len) <= 0) { in LoadPublicKey()
630 if (bio) { in LoadPublicKey()
631 BIO_free(bio); in LoadPublicKey()
632 bio = nullptr; in LoadPublicKey()
/developtools/profiler/hiebpf/src/
Dhiebpf.bpf.c508 int get_filename_by_bio(char *filename, const size_t len, const struct bio *bio) in get_filename_by_bio() argument
510 if (filename == NULL || len == 0 || bio == NULL) { in get_filename_by_bio()
514 struct inode *host = BPF_CORE_READ(bio, bi_io_vec, bv_page, mapping, host); in get_filename_by_bio()
733 emit_strtrace_event(bio_se->stime, bio_se->type, BPF_CORE_READ(rq, bio), BIOTRACE); in handle_blk_issue()
738 bio_se->size = BPF_CORE_READ(rq, bio, bi_iter.bi_size); in handle_blk_issue()
784 cmplt_event->prio = BPF_CORE_READ(rq, bio, bi_ioprio); in BPF_PROG()
785 cmplt_event->blkcnt = BPF_CORE_READ(rq, bio, bi_iter.bi_sector); in BPF_PROG()
/developtools/profiler/hiebpf/include/
Dvmlinux.h2647 struct bio;
2650 struct bio *head;
2651 struct bio *tail;
5410 typedef void bio_end_io_t(struct bio *);
5426 struct bio { struct
5427 struct bio *bi_next; argument
7475 struct bio *bip_bio;
7664 void (*submit_bio)(struct bio *);
29086 struct bio *bio; member
29087 struct bio *biotail;
[all …]