MCPcopy Create free account
hub / github.com/ceph/ceph / file_object_t

Class file_object_t

src/include/object.h:79–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77
78
79struct file_object_t {
80 uint64_t ino, bno;
81 mutable char buf[34];
82
83 file_object_t(uint64_t i=0, uint64_t b=0) : ino(i), bno(b) {
84 buf[0] = 0;
85 }
86
87 const char *c_str() const;
88
89 operator object_t() {
90 return object_t(c_str());
91 }
92};
93
94
95// ---------------------------

Callers 13

undumpMethod · 0.85
ll_get_stripe_osdMethod · 0.85
ll_read_blockMethod · 0.85
ll_write_blockMethod · 0.85
play_traceMethod · 0.85
create_objectsMethod · 0.85
object_rwMethod · 0.85
_read_headMethod · 0.85
_write_headMethod · 0.85
purge_rangeMethod · 0.85
_do_purge_rangeMethod · 0.85
get_ondisk_objectMethod · 0.85

Calls 1

object_tClass · 0.85

Tested by

no test coverage detected