OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:io_service
(Results
1 - 3
of
3
) sorted by null
/external/parameter-framework/asio-1.10.6/include/asio/
io_service.hpp
2
//
io_service
.hpp
32
class
io_service
;
33
template <typename Service> Service& use_service(
io_service
& ios);
34
template <typename Service> void add_service(
io_service
& ios, Service* svc);
35
template <typename Service> bool has_service(
io_service
& ios);
44
* The
io_service
class provides the core I/O functionality for users of the
52
* The
io_service
class also includes facilities intended for developers of
60
* notify_fork() function should not be called while any
io_service
function,
61
* or any function on an I/O object that is associated with the
io_service
, is
69
* Synchronous operations on I/O objects implicitly run the
io_service
objec
173
class
io_service
class in namespace:asio
[
all
...]
/external/parameter-framework/upstream/asio/stub/
asio.hpp
59
struct
io_service
: dummy_base
struct in namespace:asio
62
io_service
(Args &&...)
function in struct:asio::io_service
/external/curl/docs/examples/
asiohiper.cpp
57
boost::asio::
io_service
io_service
;
variable
58
boost::asio::deadline_timer timer(
io_service
);
355
boost::asio::ip::tcp::socket *tcp_socket = new boost::asio::ip::tcp::socket(
io_service
);
459
/* enter
io_service
run loop */
460
io_service
.run();
Completed in 1037 milliseconds