Lines Matching defs:value
85 const char *value)
88 if(value) {
92 printf("%s => %s\n", attr, value);
97 err = fsetxattr(fd, attr, value, strlen(value), 0, 0);
99 err = fsetxattr(fd, attr, value, strlen(value), 0);
103 attr, value, strlen(value));
123 char *value = NULL;
124 CURLcode result = curl_easy_getinfo(curl, mappings[i].info, &value);
125 if(!result && value)
126 err = xattr(fd, mappings[i].attr, value);