Lines Matching defs:tmp
246 char *tmp;
250 tmp = malloc(strlen(module) + 64);
251 if (!tmp) {
255 sprintf(tmp, "libfusemod_%s.so", module);
262 so->handle = dlopen(tmp, RTLD_NOW);
265 tmp, dlerror());
269 sprintf(tmp, "fuse_module_%s_factory", module);
270 factory = (fuse_module_factory_t*)dlsym(so->handle, tmp);
273 tmp, dlerror());
281 free(tmp);
909 char *tmp = strdup(path);
910 if (!tmp)
918 char *path_element = strtok_r(tmp, "/", &save_ptr);
929 free(tmp);
1859 struct fuse_bufvec tmp = FUSE_BUFVEC_INIT(size);
1870 tmp.buf[0].mem = mem;
1871 res = fuse_buf_copy(&tmp, buf, 0);
1875 tmp.buf[0].size = res;
1876 flatbuf = &tmp.buf[0];