MCPcopy Create free account
hub / github.com/ioi/isolate / walk_context

Class walk_context

util.c:126–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124 */
125
126struct walk_context {
127 // Current item
128 int dir_fd;
129 const char *name;
130 bool is_dir;
131 struct stat st;
132
133 // Common for the whole walk
134 dev_t root_dev;
135 void (*callback)(struct walk_context *ctx);
136
137 // Used by our callbacks
138 uid_t chown_uid;
139 gid_t chown_gid;
140 bool keep_special_files;
141};
142
143static void
144walktree_ctx(struct walk_context *ctx)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…