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

/haiku/src/bin/addattr/
H A DaddAttr.cpp29 writeAttrValue(int fd, const char* name, type_code type, Type value) function
78 return writeAttrValue<int8>(fd, name, type, (int8)int64value);
80 return writeAttrValue<int16>(fd, name, type, (int16)int64value);
82 return writeAttrValue<int32>(fd, name, type, (int32)int64value);
84 return writeAttrValue<int64>(fd, name, type, int64value);
87 return writeAttrValue<uint8>(fd, name, type, (uint8)uint64value);
89 return writeAttrValue<uint16>(fd, name, type, (uint16)uint64value);
91 return writeAttrValue<uint32>(fd, name, type, (uint32)uint64value);
93 return writeAttrValue<uint64>(fd, name, type, uint64value);
96 return writeAttrValue<floa
[all...]

Completed in 83 milliseconds