Searched refs:read (Results 101 - 125 of 510) sorted by relevance

1234567891011>>

/haiku-fatelf/src/servers/print/
H A DConfigWindow.h56 void UpdateSettings(bool read);
/haiku-fatelf/src/system/libroot/posix/glibc/libio/
H A Diofopncook.c49 if (cfile->__io_functions.read == NULL)
52 return cfile->__io_functions.read (cfile->__cookie, buf, size);
111 JUMP_INIT(read, _IO_cookie_read),
230 JUMP_INIT(read, _IO_cookie_read),
/haiku-fatelf/src/system/libroot/posix/stdio/
H A Dstdio.c56 ret = read(fp->_file, buf, n);
57 /* if the read succeeded, update the current offset */
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dhostname.cpp77 int length = read(file, hostName, nameSize - 1);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dfs_shell_command_unix.cpp56 // read the reply
61 int bytesRead = read(fd, replyBuffer, toRead);
66 fprintf(stderr, "Failed to read reply from fs_shell: %s\n",
/haiku-fatelf/src/tests/kits/net/
H A Dat_client.c50 rv = read(sock, buffer, 50);
53 err(rv, "read");
/haiku-fatelf/src/tests/kits/net/icmp/
H A Dudp_unreachable.cpp71 bytes = read(sockfd, buffer, MAX_LENGTH);
/haiku-fatelf/src/tests/kits/net/sock/
H A Dlooptcp.c38 /* data to read on stdin */
39 if ( (nread = read(STDIN_FILENO, rbuf, readlen)) < 0)
40 err_sys("read error from stdin");
48 stdineof = 1; /* don't read stdin anymore */
65 /* data to read from socket */
88 goto oncemore; /* read the message again */
/haiku-fatelf/src/tests/system/benchmarks/libMicro/
H A Dread.c63 " [-f file-to-read (default %s)]\n"
65 " [-w (store a byte to each page after read)]\n"
66 "notes: measures read()\n",
123 if (read(ts->ts_fd, ts->ts_buf, opts) != opts) {
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dread_entry.c152 (read(fd, buf, (unsigned) (count)*2) == (int) (count)*2)
155 if ((value) % 2 != 0) read(fd, buf, 1)
159 /* return 1 if read, 0 if not found or garbled */
206 if ((have = read(fd, buf, want)) != want) {
220 || read(fd, ptr->Booleans, (unsigned) bool_count) < bool_count) {
248 if (read(fd, ptr->str_table, (unsigned) str_size) != str_size)
297 if (read(fd, ptr->Booleans + BOOLCOUNT, (unsigned)
323 if (read(fd, ptr->ext_str_table, (unsigned) ext_str_limit) != ext_str_limit)
387 /* return 1 if read, 0 if not found or garbled */
396 T(("read terminf
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/dev/e1000/
H A De1000_mbx.c65 * @mbx_id: id of mailbox to read
67 * returns SUCCESS if it successfuly read message from buffer
76 /* limit read to size of mailbox */
80 if (mbx->ops.read)
81 ret_val = mbx->ops.read(hw, msg, size, mbx_id);
250 if (!mbx->ops.read)
255 /* if ack received read message, otherwise we timed out */
257 ret_val = mbx->ops.read(hw, msg, size, mbx_id);
303 mbx->ops.read = e1000_null_mbx_transact;
313 * e1000_read_v2p_mailbox - read v2
[all...]
H A De1000_i210.c219 * @offset: offset of word in the Shadow Ram to read
220 * @words: number of words to read
221 * @data: word read from the Shadow Ram
236 * to read in bursts than synchronizing access for each word. */
362 * @address: the word address (aka eeprom offset) to read
363 * @data: pointer to the data read
416 * @address: the word address (aka eeprom offset) to read
417 * @data: pointer to the data read
474 * Replace the read function with semaphore grabbing with
478 read_op_ptr = hw->nvm.ops.read;
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/extensions/saxon643/com/nwalsh/saxon/
H A DText.java164 while ((len = is.read(chars)) > 0) {
181 carry = is.read();
200 System.out.println("Cannot read " + href);
/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan27/src/com/nwalsh/xalan/
H A DText.java123 while ((len = is.read(chars)) > 0) {
140 carry = is.read();
161 System.out.println("Cannot read " + href);
/haiku-fatelf/src/kits/mail/
H A DMailAttachment.cpp405 ssize_t read = _data->Read(src, size); local
406 if (read < B_OK)
407 return read;
412 ssize_t destSize = max_encoded_length(_encoding, read);
421 destSize = encode (_encoding, dest, src, read, false /* headerMode */);
426 read = renderTo->Write(dest, destSize);
428 return read > 0 ? B_OK : read;
/haiku-fatelf/src/add-ons/kernel/drivers/audio/cmedia/
H A Djoystick_driver.h31 bigtime_t timestamp; /* system_time when it was read */
66 /** "read" actual data from device into "data" */
67 int (*read)(void * cookie, int port, extended_joystick * data, size_t size); member in struct:_joystick_module
/haiku-fatelf/src/add-ons/kernel/drivers/audio/emuxki/
H A Djoystick_driver.h31 bigtime_t timestamp; /* system_time when it was read */
66 /** "read" actual data from device into "data" */
67 int (*read)(void * cookie, int port, extended_joystick * data, size_t size); member in struct:_joystick_module
/haiku-fatelf/src/add-ons/kernel/drivers/joystick/emuxkigameport/
H A Djoystick_driver.h38 bigtime_t timestamp; /* system_time when it was read */
73 /** "read" actual data from device into "data" */
74 int (*read)(void * cookie, int port, extended_joystick * data, size_t size); member in struct:_joystick_module
/haiku-fatelf/src/add-ons/media/plugins/asf_reader/
H A DASFFileReader.h114 static int32_t read(void *opaque, void *buffer, int32_t size);
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/
H A DMemIOCallback.cpp66 uint32 MemIOCallback::read(void *Buffer, size_t Size) function in class:MemIOCallback
/haiku-fatelf/src/add-ons/print/transports/parallel_port/
H A DParallelTransport.cpp94 return read(fFile, buffer, size);
/haiku-fatelf/src/add-ons/print/transports/serial_port/
H A DSerialTransport.cpp95 return read(fFile, buffer, size);
/haiku-fatelf/src/add-ons/print/transports/shared/
H A DSocketStream.cpp45 bytes = __sock->read(__pu, __alsize);
/haiku-fatelf/src/apps/debugger/files/
H A DSourceFile.cpp85 // read the file
86 ssize_t bytesRead = read(fd, fFileContent, fileSize);
/haiku-fatelf/src/bin/diffutils/lib/
H A Dcmpbuf.c79 Return the number of characters successfully read.
93 ssize_t nread = read (fd, bp, bytes_to_read);
99 /* Accommodate Tru64 5.1, which can't read more than INT_MAX

Completed in 316 milliseconds

1234567891011>>