Lines Matching refs:attr
30 // is safer than zipattr_to_mode(attr) & S_IFDIR because the unix
32 inline bool zipattr_is_dir(u4 attr) { return (attr & 0x10) != 0; }
40 inline mode_t zipattr_to_mode(u4 attr) {
41 return ((mode_t) ((attr >> 16) & 0xffff));
55 // and external attributes "attr". This function returns a pointer
61 virtual u1* NewFile(const char* filename, const u4 attr) = 0;
117 // Tells whether to skip or process the file "filename". "attr" is the
121 virtual bool Accept(const char* filename, const u4 attr) = 0;
124 // attributes "attr" and length "size". The file content is accessible
126 virtual void Process(const char* filename, const u4 attr,