/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/ |
SelectorTest.java | 25 import java.nio.channels.Pipe; 374 final Pipe pipe = Pipe.open(); local 375 pipe.source().configureBlocking(false); 376 final SelectionKey key = pipe.source().register(selector, SelectionKey.OP_READ); 385 pipe.sink().write(ByteBuffer.allocate(4)); // unblock select()
|
/external/libnfc-nxp/src/ |
phHciNfc_ISO15693.c | 157 *ppipe_id = ps_15693_info->ps_15693_pipe_info->pipe.pipe_id; 193 ps_15693_info->ps_15693_pipe_info->pipe.pipe_id = pipeID; 297 pipeid = ps_pipe_info->pipe.pipe_id ; 312 pipeid = ps_pipe_info->pipe.pipe_id ; 500 HCI_PRINT("ISO 15693 open pipe complete\n"); 508 HCI_PRINT("ISO 15693 close pipe complete\n"); 759 pipeid = ps_pipe_info->pipe.pipe_id ;
|
phHciNfc_CE_B.c | 194 ps_pipe_info->pipe.pipe_id, 210 ps_pipe_info->pipe.pipe_id, 283 /* HOST Card Emulation B pipe close sequence */ 295 /* HOST Card Emulation A pipe delete sequence */ 515 HCI_PRINT("CE B open pipe complete\n"); 520 HCI_PRINT("CE B close pipe complete\n");
|
phHciNfc_PollingLoop.c | 99 /* Pointer to the polling loop pipe information */ 268 HCI_PRINT("Polling loop open pipe in progress ...\n"); 310 HCI_PRINT("Polling loop close pipe in progress ...\n"); 543 /* Function to assign pipe ID */ 639 HCI_PRINT("Polling loop open pipe complete\n"); 644 HCI_PRINT("Polling loop close pipe complete\n");
|
phHciNfc_DevMgmt.h | 161 * The phHciNfc_DevMgmt_Get_PipeID function gives the pipe id of the PN544 Device 186 * The phHciNfc_DevMgmt_Initialise function creates and the opens the pipe 277 * \param[in] pPipeInfo Update the pipe Information of the Device
|
phHciNfc_Felica.h | 89 /* Pointer to the Felica pipe information */ 122 * The phHciNfc_Felica_Get_PipeID function gives the pipe id of the Felica 152 * \param[in] pPipeInfo Update the pipe Information of the reader
|
phHciNfc_ISO15693.h | 110 * The phHciNfc_ISO15693_Get_PipeID function gives the pipe id of the ISO15693 139 * \param[in] pPipeInfo Update the pipe Information of the ISO15693 238 * \param[in] pPipeInfo Update the pipe Information of the ISO
|
/frameworks/native/libs/utils/ |
Looper.cpp | 73 int result = pipe(wakeFds); 74 LOG_ALWAYS_FATAL_IF(result != 0, "Could not create wake pipe. errno=%d", errno); 80 LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake read pipe non-blocking. errno=%d", 84 LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake write pipe non-blocking. errno=%d", 87 // Allocate the epoll instance and register the wake pipe. 96 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake read pipe to epoll instance. errno=%d", 254 ALOGW("Ignoring unexpected epoll events 0x%x on wake read pipe.", epollEvents);
|
/external/dbus/dbus/ |
dbus-spawn.c | 101 "Failed to read from child pipe (%s)", 155 "Failed to read from child pipe (%s)", 205 DBusWatch *error_watch; /**< Error pipe watch */ 206 DBusWatch *sitter_watch; /**< Sitter pipe watch */ 781 /** Helps remember which end of the pipe is which */ 783 /** Helps remember which end of the pipe is which */ 824 retval = pipe(p); 833 "Failed to create pipe for communicating with child process (%s)", 867 _dbus_warn ("Failed to write data to pipe!\n"); 1004 _dbus_verbose ("babysitter got POLLIN from parent pipe\n") [all...] |
/external/dnsmasq/contrib/lease-access/ |
lease.access.patch | 9 -static void async_event(int pipe, time_t now); 16 /* prime the pipe to load stuff first time. */ 103 /* error pipe, debug mode. */ 110 -static void async_event(int pipe, time_t now) 114 +int async_event(int pipe, time_t now, struct event_desc* event, unsigned int secs) 120 - if (read_write(pipe, (unsigned char *)&ev, sizeof(ev), 1)) 121 + if (read_timeout(pipe, (unsigned char *)&ev, sizeof(ev), now, secs) > 0) 205 +int wait_for_child(int pipe); 206 +int async_event(int pipe, time_t now, struct event_desc*, unsigned int timeout); 302 if (pipe(pipefd) == -1 || !fix_fd(pipefd[1]) || (pid = fork()) == -1 [all...] |
/external/iproute2/doc/actions/ |
actions-general | 94 3) A feature i call pipe 95 The motivation is derived from Unix pipe mechanism but applied to packets. 149 # pipe the packet to the next action 150 action police rate 1kbit burst 9k pipe \ 157 # and if that is exceeded we pipe to the next action 158 action police index 30 mtu 5000 rate 1kbit burst 10k pipe \ 178 action order 2: police 1 action pipe rate 1Kbit burst 9Kb mtu 2Kb 183 action order 4: police 30 action pipe rate 1Kbit burst 10Kb mtu 5000b 221 action order 2: police 1 action pipe rate 1Kbit burst 9Kb mtu 2Kb 228 action order 4: police 30 action pipe rate 1Kbit burst 10Kb mtu 5000b [all...] |
/cts/suite/audio_quality/test/ |
RemoteAudioFakeTcpTest.cpp | 60 if (pipe(pipefd) == -1) { 61 LOGE("cannot create pipe"); 64 LOGD("pipe %d %d", pipefd[0], pipefd[1]);
|
/development/samples/NotePad/tests/src/com/example/android/notepad/ |
NotePadProviderTest.java | 231 * Tests the provider's public API for opening a read-only pipe of data for a note ID URI 251 // Opens the pipe. The opts argument is for passing options from a caller to the provider, 254 testNoteIdUri, // the URI for a single note. The pipe points to this 301 * pipe for MIME type "text/plain". A FileNotFound exception is expected, so calls 319 * Tests the provider's method for actually returning writing data into a pipe. The method is 323 * the pipe. PipeDataWriter is an interface, not a class, so it must be implemented. 343 // An AssetFileDescriptor for the pipe. 374 // Opens the pipe that will contain the data. 389 // Gets a File Reader that can read the pipe. 396 * The pipe should contain three lines: The note's title, an empty line, and the note' [all...] |
/device/samsung/crespo/libsensors/ |
sensors.cpp | 192 int result = pipe(wakeFds); 193 ALOGE_IF(result<0, "error creating wake pipe (%s)", strerror(errno)); 265 ALOGE_IF(result<0, "error reading from wake pipe (%s)", strerror(errno));
|
/external/bluetooth/glib/tests/ |
spawn-test.c | 38 #define pipe(fds) _pipe(fds, 4096, _O_BINARY) macro 203 if (pipe (pipedown) < 0 || 204 pipe (pipeup) < 0)
|
/external/chromium/chrome/browser/ |
browser_main_posix.cc | 130 NOTREACHED() << "Unexpected closure of shutdown pipe."; 242 int ret = pipe(pipefd); 244 PLOG(DFATAL) << "Failed to create pipe";
|
/external/clang/utils/ |
token-delta.py | 111 stdin=subprocess.PIPE, 112 stdout=subprocess.PIPE, 113 stderr=subprocess.PIPE)
|
/external/dhcpcd/ |
bind.c | 71 /* Setup a signal pipe so parent knows when to exit. */ 72 if (pipe(sidpipe) == -1) { 73 syslog(LOG_ERR, "pipe: %m");
|
/external/mtpd/ |
mtpd.c | 51 /* We redirect signals to a pipe in order to prevent race conditions. */ 168 if (pipe(signals) == -1) { 169 log_print(FATAL, "Pipe() %s", strerror(errno));
|
/external/qemu/ |
os-posix.c | 245 if (pipe(fds) == -1) 331 perror("daemonize. Writing to pipe\n"); 343 * Creates an eventfd that looks like a pipe and has EFD_CLOEXEC set.
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/ |
OMX_G726Dec_CompThread.c | 152 G726DEC_DPRINT (":: DATA pipe is set in Component Thread\n"); 155 G726DEC_DPRINT (":: Error while reading from the pipe\n"); 164 G726DEC_DPRINT (":: CMD pipe is set in Component Thread\n");
|
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/ |
OMX_AmrDec_ComponentThread.c | 159 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: DATA pipe is set in Component Thread\n",__LINE__); 162 OMX_ERROR4(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: Error while reading from the pipe\n",__LINE__); 173 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: CMD pipe is set in Component Thread\n",__LINE__);
|
/development/ndk/platforms/android-3/include/sys/ |
_sigdefs.h | 45 __BIONIC_SIGDEF(SIGPIPE,13,"Broken pipe")
|
/device/samsung/tuna/libsensors/ |
sensors.cpp | 142 numSensorDrivers, // wake pipe goes here 217 int result = pipe(wakeFds); 218 ALOGE_IF(result<0, "error creating wake pipe (%s)", strerror(errno)); 315 ALOGE_IF(result<0, "error reading from wake pipe (%s)", strerror(errno));
|
/external/bluetooth/glib/gio/ |
gcancellable.c | 31 #ifndef pipe 32 #define pipe(fds) _pipe(fds, 4096, _O_BINARY) macro 195 if (pipe (cancellable->cancel_pipe) == 0) 204 g_warning ("Failed to create pipe for GCancellable. Out of file descriptors?");
|