Lines Matching defs:overlay_path
41 char overlay_path[];
54 fn(d->overlay_path);
59 dtoverlay_add(const char *overlay_path)
64 while (*overlay_path == ' ' || *overlay_path == '\t')
65 ++overlay_path;
69 if (strcmp(d->overlay_path, overlay_path) == 0)
74 d = alloc(DTOVERLAY_ENTRY_SIZE(overlay_path));
75 strcpy(d->overlay_path, overlay_path);
81 dtoverlay_remove(const char *overlay_path)
86 while (*overlay_path == ' ' || *overlay_path == '\t')
87 ++overlay_path;
90 if (strcmp(d->overlay_path, overlay_path) == 0) {
92 dealloc(d, DTOVERLAY_ENTRY_SIZE(d->overlay_path));
106 dealloc(d, DTOVERLAY_ENTRY_SIZE(d->overlay_path));