| /freebsd-9-stable/contrib/libstdc++/include/std/ |
| D | std_fstream.h | 248 is_open() const throw() in _GLIBCXX_BEGIN_NAMESPACE() 249 { return _M_file.is_open(); } in _GLIBCXX_BEGIN_NAMESPACE() 496 is_open() in is_open() function 497 { return _M_filebuf.is_open(); } in is_open() 502 is_open() const in is_open() function 503 { return _M_filebuf.is_open(); } in is_open() 626 is_open() in is_open() function 627 { return _M_filebuf.is_open(); } in is_open() 632 is_open() const in is_open() function 633 { return _M_filebuf.is_open(); } in is_open() [all …]
|
| /freebsd-9-stable/contrib/libstdc++/src/ |
| D | compatibility.cc | 283 basic_fstream<char>::is_open() const; 287 basic_ifstream<char>::is_open() const; 291 basic_ofstream<char>::is_open() const; 328 basic_fstream<wchar_t>::is_open() const; 332 basic_ifstream<wchar_t>::is_open() const; 336 basic_ofstream<wchar_t>::is_open() const;
|
| /freebsd-9-stable/contrib/libstdc++/config/io/ |
| D | basic_file_stdio.cc | 196 if (!this->is_open() && __file) in sys_open() 218 if (__c_mode && !this->is_open() && (_M_cfile = fdopen(__fd, __c_mode))) in sys_open() 235 if (__c_mode && !this->is_open()) in open() 251 __basic_file<char>::is_open() const in is_open() function in __basic_file 266 if (this->is_open()) in close()
|
| D | basic_file_stdio.h | 80 is_open() const;
|
| /freebsd-9-stable/contrib/libstdc++/include/bits/ |
| D | fstream.tcc | 99 if (!this->is_open()) in open() 102 if (this->is_open()) in open() 133 if (this->is_open()) in close() 169 if (__testin && this->is_open()) in showmanyc() 643 if (!this->is_open()) in setbuf() 680 if (this->is_open() && !__testfail) in seekoff() 726 if (this->is_open()) in seekpos() 847 if (this->is_open()) in imbue()
|
| /freebsd-9-stable/contrib/libstdc++/include/ext/ |
| D | stdio_filebuf.h | 132 if (this->is_open()) in stdio_filebuf() 149 if (this->is_open()) in stdio_filebuf()
|
| /freebsd-9-stable/contrib/libc++/include/ |
| D | fstream | 38 bool is_open() const; 86 bool is_open() const; 119 bool is_open() const; 152 bool is_open() const; 208 bool is_open() const; 461 basic_filebuf<_CharT, _Traits>::is_open() const 1020 bool is_open() const; 1105 basic_ifstream<_CharT, _Traits>::is_open() const 1107 return __sb_.is_open(); 1165 bool is_open() const; [all …]
|
| /freebsd-9-stable/contrib/ntp/sntp/libevent/test/ |
| D | regress_ssl.c | 261 struct event_base *base, int is_open, int flags, SSL *ssl1, SSL *ssl2, in open_ssl_bufevs() argument 264 int state1 = is_open ? BUFFEREVENT_SSL_OPEN :BUFFEREVENT_SSL_CONNECTING; in open_ssl_bufevs() 265 int state2 = is_open ? BUFFEREVENT_SSL_OPEN :BUFFEREVENT_SSL_ACCEPTING; in open_ssl_bufevs()
|
| /freebsd-9-stable/lib/libstand/ |
| D | tftp.c | 93 static int is_open = 0; variable 401 if (is_open) in tftp_open() 430 is_open = 1; in tftp_open() 519 is_open = 0; in tftp_close()
|
| /freebsd-9-stable/sys/dev/nxge/xgehal/ |
| D | xgehal-channel.c | 404 channel->is_open = 1; in xge_hal_channel_open() 532 channel->is_open = 0; in xge_hal_channel_close() 540 xge_assert(!tmp->is_open); in xge_hal_channel_close()
|
| D | xgehal-mgmtaux.c | 1257 if (channel->is_open != 1) in xge_hal_aux_channel_read() 1266 __HAL_AUX_ENTRY(key, channel->is_open, "%u"); in xge_hal_aux_channel_read() 1294 if (channel->is_open != 1) in xge_hal_aux_channel_read() 1303 __HAL_AUX_ENTRY(key, channel->is_open, "%u"); in xge_hal_aux_channel_read()
|
| D | xgehal-stats.c | 878 !channel->is_open) { in xge_hal_stats_channel()
|
| D | xgehal-device.c | 5512 xge_assert(!channel->is_open); in xge_hal_device_terminate()
|
| /freebsd-9-stable/sys/dev/nxge/include/ |
| D | xgehal-channel.h | 394 int is_open; member
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Frontend/ |
| D | LayoutOverrideSource.cpp | 32 if (!Input.is_open()) in LayoutOverrideSource()
|
| /freebsd-9-stable/sys/dev/vxge/ |
| D | vxge.h | 305 u32 is_open; member
|
| D | vxge.c | 2314 vpath->is_open = TRUE; in vxge_vpath_open() 2453 vpath->is_open = FALSE; in vxge_vpath_close() 2556 return (vdev->vpaths[i].is_open ? vdev->vpaths[i].handle : NULL); in vxge_vpath_handle_get()
|
| /freebsd-9-stable/contrib/libstdc++/ |
| D | ChangeLog-2002 | 3372 (__basic_file::is_open): Make const. 3375 (__basic_file::is_open): Make const. 5348 (filebuf::showmanyc): Check for is_open.
|
| D | ChangeLog-2003 | 1907 == instead. Don't use __check_facet(_M_codecvt) unless is_open(). 5698 * include/std/std_fstream.h (basic_filebuf::is_open): Add throw() 6306 * 27_io/basic_filebuf/is_open/char/1.cc: New.
|
| D | ChangeLog-2000 | 4424 * bits/std_fstream.h (filebuf::is_open): Check for _M_file before
|
| D | ChangeLog-2004 | 2315 of is_open, as per DR 365 [WP].
|