Lines Matching refs:hdfptr
33 long hdfptr; // stores the C HDF* pointer field in JniHdf
56 hdfptr = _init(); in JniHdf()
60 protected JniHdf(long hdfptr, JniHdf parent) { in JniHdf() argument
61 this.hdfptr = hdfptr; in JniHdf()
68 protected JniHdf newHdf(long hdfptr, HDF parent) { in newHdf() argument
69 return new JniHdf(hdfptr, cast(parent)); in newHdf()
79 if (hdfptr != 0) { in close()
80 _dealloc(hdfptr); in close()
81 hdfptr = 0; in close()
101 if (hdfptr == 0) { in readFile()
104 return _readFile(hdfptr, filename, fileLoader != null); in readFile()
108 if (hdfptr == 0) { in fileLoad()
145 if (hdfptr == 0) { in writeFile()
148 return _writeFile(hdfptr, filename); in writeFile()
155 if (hdfptr == 0) { in readString()
158 return _readString(hdfptr, data); in readString()
164 if (hdfptr == 0) { in writeString()
167 return _writeString(hdfptr); in writeString()
174 if (hdfptr == 0) { in getIntValue()
177 return _getIntValue(hdfptr,hdfname,default_value); in getIntValue()
183 if (hdfptr == 0) { in getValue()
186 return _getValue(hdfptr,hdfname,default_value); in getValue()
191 if (hdfptr == 0) { in setValue()
194 _setValue(hdfptr,hdfname,value); in setValue()
199 if (hdfptr == 0) { in removeTree()
202 _removeTree(hdfptr,hdfname); in removeTree()
207 if (hdfptr == 0) { in setSymLink()
210 _setSymLink(hdfptr,hdf_name_src,hdf_name_dest); in setSymLink()
215 if (hdfptr == 0) { in exportDate()
264 if (hdfptr == 0) {
282 if (hdfptr == 0) {
285 long obj_ptr = _getObj(hdfptr, hdfpath);
296 if (hdfptr == 0) {
299 long obj_ptr = _getChild(hdfptr, hdfpath);
320 if (hdfptr == 0) {
323 long obj_ptr = _getObj(hdfptr, hdfpath);
326 _setValue(hdfptr, hdfpath, "");
327 obj_ptr = _getObj( hdfptr, hdfpath );
338 if (hdfptr == 0) {
341 return _objName(hdfptr);
347 if (hdfptr == 0) {
350 return _objValue(hdfptr);
358 if (hdfptr == 0) {
361 long child_ptr = _objChild(hdfptr);
373 if (hdfptr == 0) {
376 long next_ptr = _objNext(hdfptr);
385 if (hdfptr == 0 || source.hdfptr == 0) {
388 _copy(hdfptr, hdfpath, source.hdfptr);
396 if (hdfptr == 0) {
399 return _dump(hdfptr);