• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/libatalk/vfs/

Lines Matching refs:attruname

285  *    attruname     (r) name of EA
297 const char * __restrict attruname,
308 if (strcmp(attruname, (*ea->ea_entries)[count].ea_name) == 0) {
310 LOG(log_debug, logtype_afpd, "ea_addentry('%s', bitmap:0x%x): exists", attruname, bitmap);
342 (*(ea->ea_entries))[ea->ea_count].ea_name = strdup(attruname);
347 (*(ea->ea_entries))[ea->ea_count].ea_namelen = strlen(attruname);
432 * attruname (r) EA name
444 const char * __restrict attruname,
452 if ((eaname = ea_path(ea, attruname, 1)) == NULL) {
453 LOG(log_error, logtype_afpd, "write_ea('%s'): ea_path error", attruname);
501 * attruname (r) EA name
511 static int ea_delentry(struct ea * __restrict ea, const char * __restrict attruname)
523 if (strcmp(attruname, (*ea->ea_entries)[count].ea_name) == 0) {
528 attruname, count + 1, ea->ea_count);
546 * attruname (r) EA name
983 * attruname (r) name of attribute
1010 if (strcmp(attruname, (*ea.ea_entries)[count].ea_name) == 0) {
1017 attruname, (*ea.ea_entries)[count].ea_size);
1043 * attruname (r) name of attribute
1061 LOG(log_debug, logtype_afpd, "get_eacontent('%s/%s')", uname, attruname);
1072 if (strcmp(attruname, (*ea.ea_entries)[count].ea_name) == 0) {
1073 if ( (eafile = ea_path(&ea, attruname, 1)) == NULL) {
1089 LOG(log_debug, logtype_afpd, "get_eacontent('%s'): sending %u bytes", attruname, toread);
1098 LOG(log_error, logtype_afpd, "get_eacontent('%s/%s'): short read", uname, attruname);
1210 * attruname (r) EA name
1234 if ((ea_addentry(&ea, attruname, attrsize, oflag)) == -1) {
1240 if ((write_ea(&ea, attruname, ibuf, attrsize)) != 0) {
1265 * attruname (r) EA name
1272 * Removes EA attruname from file uname.
1279 LOG(log_debug, logtype_afpd, "remove_ea('%s/%s')", uname, attruname);
1286 if ((ea_delentry(&ea, attruname)) == -1) {
1292 if ((delete_ea_file(&ea, attruname)) != 0) {