Searched refs:attr_size (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ntfs/
H A Dattrib.c1509 u32 attr_size; local
1612 attr_size = le32_to_cpu(a->data.resident.value_length);
1613 BUG_ON(attr_size != data_size);
1618 attr_size);
1619 memset(kaddr + attr_size, 0, PAGE_CACHE_SIZE - attr_size);
1650 cpu_to_sle64(attr_size);
1723 arec_size = (mp_ofs + attr_size + 7) & ~7;
1728 if ((mp_ofs + attr_size) > arec_size) {
1729 err2 = attr_size;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Drtpdec.h181 int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size); ///< from rtsp.c, but used by rtp dynamic protocol handlers.
H A Drtsp.c254 int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size) argument
259 get_word_sep(attr, attr_size, "=", p);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dattrib.c3378 u32 old_size, alloc_size, attr_size; local
3382 attr_size = le32_to_cpu(a->length);
3386 (unsigned)attr_size, (unsigned)new_size);
3392 if (new_size != attr_size) {
3394 u32 new_muse = old_size - attr_size + new_size;
3404 if (a->type == AT_INDEX_ROOT && new_size > attr_size &&
3413 memmove((u8 *)a + new_size, (u8 *)a + attr_size,
3414 old_size - ((u8 *)a - (u8 *)m) - attr_size);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/smbd/
H A Dtrans2.c138 size_t attr_size = 256; local
144 val = TALLOC_REALLOC_ARRAY(mem_ctx, val, char, attr_size);
150 sizeret = SMB_VFS_FGETXATTR(fsp, fsp->fd, ea_name, val, attr_size);
152 sizeret = SMB_VFS_GETXATTR(conn, fname, ea_name, val, attr_size);
155 if (sizeret == -1 && errno == ERANGE && attr_size != 65536) {
156 attr_size = 65536;

Completed in 171 milliseconds