Home
last modified time | relevance | path

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

/developtools/profiler/device/plugins/hiebpf_plugin/tools/src/
Debpf_converter.cpp364 EventBIO bio = {}; in EventBIOParsing() local
365 CHK(Read(reinterpret_cast<void*>(&bio), EVENT_BIO_FIXED_SIZE)); in EventBIOParsing()
366 uint64_t userIPs[bio.nips]; in EventBIOParsing()
367 if (bio.nips > 0) { in EventBIOParsing()
369 bio.userIPs = std::vector<uint64_t>(userIPs, userIPs + bio.nips); in EventBIOParsing()
374 << " tag: " << bio.tag << '\n' in EventBIOParsing()
375 << " len: " << bio.len << '\n' in EventBIOParsing()
376 << " pid: " << bio.pid << '\n' in EventBIOParsing()
377 << " tid: " << bio.tid << '\n' in EventBIOParsing()
378 << " comm: " << bio.comm << '\n' in EventBIOParsing()
[all …]
/developtools/hdc/src/common/
Dauth.cpp594 BIO *bio = nullptr; in LoadPublicKey() local
609 bio = BIO_new(BIO_s_mem()); in LoadPublicKey()
610 if (!bio) { in LoadPublicKey()
614 if (!PEM_write_bio_PUBKEY(bio, evp)) { in LoadPublicKey()
620 if (BIO_read_ex(bio, buf, sizeof(buf), &len) <= 0) { in LoadPublicKey()
633 if (bio) { in LoadPublicKey()
634 BIO_free(bio); in LoadPublicKey()
635 bio = nullptr; in LoadPublicKey()
/developtools/profiler/hiebpf/src/
Dhiebpf.bpf.c509 int get_filename_by_bio(char *filename, const size_t len, const struct bio *bio) in get_filename_by_bio() argument
511 if (filename == NULL || len == 0 || bio == NULL) { in get_filename_by_bio()
515 struct inode *host = BPF_CORE_READ(bio, bi_io_vec, bv_page, mapping, host); in get_filename_by_bio()
734 emit_strtrace_event(bio_se->stime, bio_se->type, BPF_CORE_READ(rq, bio), BIOTRACE); in handle_blk_issue()
739 bio_se->size = BPF_CORE_READ(rq, bio, bi_iter.bi_size); in handle_blk_issue()
785 cmplt_event->prio = BPF_CORE_READ(rq, bio, bi_ioprio); in BPF_PROG()
786 cmplt_event->blkcnt = BPF_CORE_READ(rq, bio, bi_iter.bi_sector); in BPF_PROG()
/developtools/hdc/src/daemon/
Ddaemon.cpp478 BIO *bio = nullptr; in InitMod() local
489 bio = BIO_new(BIO_s_mem()); in InitMod()
490 if (bio == nullptr) { in InitMod()
494 int wbytes = BIO_write(bio, pubkeyp, pubkey.length()); in InitMod()
499 rsa = PEM_read_bio_RSA_PUBKEY(bio, nullptr, nullptr, nullptr); in InitMod()
510 if (bio) { in InitMod()
511 BIO_free(bio); in InitMod()
/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 …]