Home
last modified time | relevance | path

Searched refs:fd (Results 1 – 25 of 1357) sorted by relevance

12345678910>>...55

/external/e2fsprogs/tests/progs/
Drandom_exercise.c50 int fd; in get_random_fd() local
53 fd = ((int) random()) % MAXFDS; in get_random_fd()
54 if (fd > 2) in get_random_fd()
55 return fd; in get_random_fd()
59 unsigned int get_inode_num(int fd) in get_inode_num() argument
63 if (fstat(fd, &st) < 0) { in get_inode_num()
74 int fd; in create_random_file() local
83 fd = open(template, O_RDONLY, 0600); in create_random_file()
85 template, fd); in create_random_file()
88 fd = open(template, O_CREAT|O_RDWR, 0600); in create_random_file()
[all …]
/external/bluetooth/bluez/compat/
Dfakehid.c63 static int send_event(int fd, uint16_t type, uint16_t code, int32_t value) in send_event() argument
67 if (fd <= fileno(stderr)) in send_event()
75 return write(fd, &event, sizeof(event)); in send_event()
81 int fd, aux; in uinput_create() local
83 fd = open("/dev/uinput", O_RDWR); in uinput_create()
84 if (fd < 0) { in uinput_create()
85 fd = open("/dev/input/uinput", O_RDWR); in uinput_create()
86 if (fd < 0) { in uinput_create()
87 fd = open("/dev/misc/uinput", O_RDWR); in uinput_create()
88 if (fd < 0) { in uinput_create()
[all …]
/external/qemu/
Diolooper-select.c46 iolooper_add_fd( IoLooper* iol, int fd ) in iolooper_add_fd() argument
48 if (iol->max_fd_valid && fd > iol->max_fd) { in iolooper_add_fd()
49 iol->max_fd = fd; in iolooper_add_fd()
54 iolooper_del_fd( IoLooper* iol, int fd ) in iolooper_del_fd() argument
56 if (iol->max_fd_valid && fd == iol->max_fd) in iolooper_del_fd()
61 iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags ) in iolooper_modify() argument
63 if (fd < 0) in iolooper_modify()
70 iolooper_add_read(iol, fd); in iolooper_modify()
72 iolooper_del_read(iol, fd); in iolooper_modify()
76 iolooper_add_write(iol, fd); in iolooper_modify()
[all …]
Dloader.c56 int fd, size; in get_image_size() local
57 fd = open(filename, O_RDONLY | O_BINARY); in get_image_size()
58 if (fd < 0) in get_image_size()
60 size = lseek(fd, 0, SEEK_END); in get_image_size()
61 close(fd); in get_image_size()
69 int fd, size; in load_image() local
70 fd = open(filename, O_RDONLY | O_BINARY); in load_image()
71 if (fd < 0) in load_image()
73 size = lseek(fd, 0, SEEK_END); in load_image()
74 lseek(fd, 0, SEEK_SET); in load_image()
[all …]
/external/qemu/target-i386/
Dhax-darwin.c24 int fd = open("/dev/HAX", O_RDWR); in hax_mod_open() local
26 if (fd == -1) in hax_mod_open()
32 return fd; in hax_mod_open()
40 if (!hax_global.vm || !hax_global.vm->fd) in hax_populate_ram()
48 ret = ioctl(hax_global.vm->fd, HAX_VM_IOCTL_ALLOC_RAM, &info); in hax_populate_ram()
79 ret = ioctl(hax_global.vm->fd, HAX_VM_IOCTL_SET_RAM, pinfo); in hax_set_phys_mem()
92 ret = ioctl(hax->fd, HAX_IOCTL_CAPABILITY, cap); in hax_capability()
106 ret = ioctl(hax->fd, HAX_IOCTL_VERSION, version); in hax_mod_version()
158 if (hax_invalid_fd(hax->fd)) in hax_host_create_vm()
164 ret = ioctl(hax->fd, HAX_IOCTL_CREATE_VM, &vm_id); in hax_host_create_vm()
[all …]
/external/valgrind/main/callgrind/
Dcommand.c58 Int fd, size; in setup_control() local
65 fd = -1; in setup_control()
121 fd = -1; in setup_control()
125 fd = (Int) sr_Res(res); in setup_control()
126 if (fd>=0) { in setup_control()
130 WRITE_STR3(fd, in setup_control()
137 VG_(write)(fd, (void*)buf, VG_(strlen)(buf)); in setup_control()
139 WRITE_STR3(fd, "base: ", dir, "\n"); in setup_control()
140 WRITE_STR3(fd, "dumps: ", out_file, "\n"); in setup_control()
141 WRITE_STR3(fd, "control: ", command_file, "\n"); in setup_control()
[all …]
/external/iproute2/ip/
Dtunnel.c69 int fd; in tnl_ioctl_get_ifindex() local
73 fd = socket(preferred_family, SOCK_DGRAM, 0); in tnl_ioctl_get_ifindex()
74 err = ioctl(fd, SIOCGIFINDEX, &ifr); in tnl_ioctl_get_ifindex()
79 close(fd); in tnl_ioctl_get_ifindex()
86 int fd; in tnl_ioctl_get_iftype() local
90 fd = socket(preferred_family, SOCK_DGRAM, 0); in tnl_ioctl_get_iftype()
91 err = ioctl(fd, SIOCGIFHWADDR, &ifr); in tnl_ioctl_get_iftype()
96 close(fd); in tnl_ioctl_get_iftype()
104 int fd; in tnl_ioctl_get_ifname() local
108 fd = socket(preferred_family, SOCK_DGRAM, 0); in tnl_ioctl_get_ifname()
[all …]
/external/qemu/android/
Dsnapshot.c51 read_or_die(int fd, void *buf, size_t nbyte) in read_or_die() argument
55 ret = read(fd, buf, nbyte); in read_or_die()
70 seek_or_die(int fd, off_t offset, int whence) in seek_or_die() argument
72 off_t ret = lseek(fd, offset, whence); in seek_or_die()
117 snapshot_info_read( int fd, SnapshotInfo* info ) in snapshot_info_read() argument
119 uint64_t start_offset = seek_or_die(fd, 0, SEEK_CUR); in snapshot_info_read()
125 seek_or_die(fd, 12, SEEK_CUR); /* skip l1 info */ in snapshot_info_read()
126 read_or_die(fd, &id_str_size, sizeof(id_str_size)); in snapshot_info_read()
127 read_or_die(fd, &name_size, sizeof(name_size)); in snapshot_info_read()
128 read_or_die(fd, &info->date_sec, sizeof(info->date_sec)); in snapshot_info_read()
[all …]
Dsync-utils.c37 int fd; member
41 syncsocket_init(int fd) in syncsocket_init() argument
46 socket_set_nonblock(fd); in syncsocket_init()
48 sync_socket->fd = fd; in syncsocket_init()
54 syncsocket_connect(int fd, SockAddress* sockaddr, int timeout) in syncsocket_connect() argument
60 socket_set_nonblock(fd); in syncsocket_connect()
63 connect_status = socket_connect(fd, sockaddr); in syncsocket_connect()
73 iolooper_add_write(looper, fd); in syncsocket_connect()
76 iolooper_del_write(looper, fd); in syncsocket_connect()
96 sync_socket->fd = fd; in syncsocket_connect()
[all …]
Dasync-socket-connector.c65 int fd; member
77 static void _on_async_socket_connector_io(void* opaque, int fd, unsigned events);
113 if (connector->fd >= 0) { in _async_socket_connector_free()
114 socket_close(connector->fd); in _async_socket_connector_free()
135 connector->fd = socket_create_inet(SOCKET_STREAM); in _async_socket_connector_open_socket()
136 if (connector->fd < 0) { in _async_socket_connector_open_socket()
143 socket_set_nonblock(connector->fd); in _async_socket_connector_open_socket()
146 _asc_socket_string(connector), connector->fd); in _async_socket_connector_open_socket()
160 if (connector->fd >= 0) { in _async_socket_connector_close_socket()
161 socket_close(connector->fd); in _async_socket_connector_close_socket()
[all …]
/external/chromium/net/tools/flip_server/
Depoll_server.cc63 void OnEvent(int fd, EpollEvent* event) { in OnEvent() argument
69 data_read = read(fd, &data, sizeof(data)); in OnEvent()
72 void OnShutdown(EpollServer *eps, int fd) {} in OnShutdown() argument
115 int fd = cb_iter->fd; in CleanupFDToCBMap() local
120 cb->OnShutdown(this, fd); in CleanupFDToCBMap()
190 void EpollServer::RegisterFD(int fd, CB* cb, int event_mask) { in RegisterFD() argument
192 VLOG(3) << "RegisterFD fd=" << fd << " event_mask=" << event_mask; in RegisterFD()
193 FDToCBMap::iterator fd_i = cb_map_.find(CBAndEventMask(NULL, 0, fd)); in RegisterFD()
203 other_cb->OnUnregistration(fd, true); in RegisterFD()
204 ModFD(fd, event_mask); in RegisterFD()
[all …]
Depoll_server.h72 virtual void OnRegistration(EpollServer* eps, int fd, int event_mask) = 0;
81 virtual void OnModification(int fd, int event_mask) = 0;
93 virtual void OnEvent(int fd, EpollEvent* event) = 0;
102 virtual void OnUnregistration(int fd, bool replaced) = 0;
110 virtual void OnShutdown(EpollServer* eps, int fd) = 0;
166 virtual void RegisterFD(int fd, CB* cb, int event_mask);
176 virtual void RegisterFDForWrite(int fd, CB* cb);
186 virtual void RegisterFDForReadWrite(int fd, CB* cb);
196 virtual void RegisterFDForRead(int fd, CB* cb);
208 virtual void UnregisterFD(int fd);
[all …]
/external/bluetooth/bluez/tools/
Dhciattach.c66 int (*init) (int fd, struct uart_t *u, struct termios *ti);
67 int (*post) (int fd, struct uart_t *u, struct termios *ti);
143 int set_speed(int fd, struct termios *ti, int speed) in set_speed() argument
151 if (tcsetattr(fd, TCSANOW, ti) < 0) in set_speed()
160 int read_hci_event(int fd, unsigned char* buf, int size) in read_hci_event() argument
171 r = read(fd, buf, 1); in read_hci_event()
181 r = read(fd, buf + count, 3 - count); in read_hci_event()
194 r = read(fd, buf + count, remain - (count - 3)); in read_hci_event()
206 static int ericsson(int fd, struct uart_t *u, struct termios *ti) in ericsson() argument
249 if (write(fd, cmd, 5) != 5) { in ericsson()
[all …]
Dppporc.c69 static inline int read_n(int fd, char *buf, int len) in read_n() argument
74 if ((w = read(fd, buf, len)) < 0) { in read_n()
90 static inline int write_n(int fd, char *buf, int len) in write_n() argument
95 if ((w = write(fd, buf, len)) < 0) { in write_n()
114 int fd, err; in create_connection() local
116 if ((fd = socket(PF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)) < 0) in create_connection()
117 return fd; in create_connection()
122 if ((err = bind(fd, (struct sockaddr *)&local_addr, sizeof(local_addr))) < 0) { in create_connection()
123 close(fd); in create_connection()
131 if ((err = connect(fd, (struct sockaddr *)&remote_addr, sizeof(remote_addr))) < 0) { in create_connection()
[all …]
/external/qemu/block/
Draw-posix.c106 int fd; member
134 int fd, ret; in raw_open_common() local
151 s->fd = -1; in raw_open_common()
152 fd = qemu_open(filename, s->open_flags, 0644); in raw_open_common()
153 if (fd < 0) { in raw_open_common()
159 s->fd = fd; in raw_open_common()
197 close(fd); in raw_open_common()
243 ret = pread(s->fd, buf, count, offset); in raw_pread_aligned()
258 s->fd, bs->filename, offset, buf, count, in raw_pread_aligned()
263 ret = pread(s->fd, buf, count, offset); in raw_pread_aligned()
[all …]
/external/zlib/examples/
Dgzlog.c291 int fd; /* file descriptor for .gz file, opened read/write */ member
350 int fd; in log_lock() local
354 while ((fd = open(log->path, O_CREAT | O_EXCL, 0644)) < 0) { in log_lock()
363 close(fd); in log_lock()
415 if (lseek(log->fd, 0, SEEK_SET) < 0 || in log_head()
416 read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA || in log_head()
450 fsync(log->fd); in log_mark()
451 ret = lseek(log->fd, HEAD, SEEK_SET) < 0 || in log_mark()
452 write(log->fd, ext, EXTRA) != EXTRA ? -1 : 0; in log_mark()
453 fsync(log->fd); in log_mark()
[all …]
/external/dbus/dbus/
Ddbus-file-unix.c59 int fd; in _dbus_file_get_contents() local
70 fd = open (filename_c, O_RDONLY | O_BINARY); in _dbus_file_get_contents()
71 if (fd < 0) in _dbus_file_get_contents()
80 _dbus_verbose ("file fd %d opened\n", fd); in _dbus_file_get_contents()
82 if (fstat (fd, &sb) < 0) in _dbus_file_get_contents()
92 _dbus_close (fd, NULL); in _dbus_file_get_contents()
102 _dbus_close (fd, NULL); in _dbus_file_get_contents()
114 bytes_read = _dbus_read (fd, str, in _dbus_file_get_contents()
126 _dbus_close (fd, NULL); in _dbus_file_get_contents()
134 _dbus_close (fd, NULL); in _dbus_file_get_contents()
[all …]
/external/bluetooth/bluez/src/
Dtextfile.c83 int fd; in create_file() local
89 fd = open(filename, O_RDWR | O_CREAT, mode); in create_file()
90 if (fd < 0) in create_file()
91 return fd; in create_file()
93 close(fd); in create_file()
141 static inline int write_key_value(int fd, const char *key, const char *value) in write_key_value() argument
155 if (write(fd, str, size) < 0) in write_key_value()
191 int fd, len, err = 0; in write_key() local
193 fd = open(pathname, O_RDWR); in write_key()
194 if (fd < 0) in write_key()
[all …]
/external/openssh/openbsd-compat/
Dbsd-poll.c43 int saved_errno, ret, fd, maxfd = 0; in poll() local
49 fd = fds[i].fd; in poll()
50 if (fd >= FD_SETSIZE) { in poll()
54 maxfd = MAX(maxfd, fd); in poll()
68 fd = fds[i].fd; in poll()
69 if (fd == -1) in poll()
72 FD_SET(fd, readfds); in poll()
73 FD_SET(fd, exceptfds); in poll()
76 FD_SET(fd, writefds); in poll()
77 FD_SET(fd, exceptfds); in poll()
[all …]
/external/bluetooth/bluez/test/
Dattest.c41 static int at_command(int fd, char *cmd, int to) in at_command() argument
48 len = write(fd, cmd, strlen(cmd)); in at_command()
53 FD_SET(fd, &rfds); in at_command()
58 if ((sel = select(fd + 1, &rfds, NULL, NULL, &timeout)) > 0) { in at_command()
60 if (FD_ISSET(fd, &rfds)) { in at_command()
62 len = read(fd, buf, sizeof(buf)); in at_command()
83 int fd; in open_device() local
85 fd = open(device, O_RDWR | O_NOCTTY | O_NONBLOCK); in open_device()
86 if (fd < 0) { in open_device()
92 tcflush(fd, TCIOFLUSH); in open_device()
[all …]
/external/dhcpcd/
Dcontrol.c45 static int fd = -1; variable
59 close(l->fd); in remove_control_data()
60 delete_event(l->fd); in remove_control_data()
81 bytes = read(l->fd, buffer, sizeof(buffer) - 1); in handle_control_data()
109 if ((f = accept(fd, (struct sockaddr *)&run, &len)) == -1) in handle_control()
112 l->fd = f; in handle_control()
116 add_event(l->fd, handle_control_data, l); in handle_control()
122 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) in make_sock()
138 if (bind(fd, (struct sockaddr *)&sun, len) == -1 || in start_control()
141 set_cloexec(fd) == -1 || in start_control()
[all …]
Dbpf.c54 int fd = -1; in open_socket() local
64 fd = open(_PATH_BPF, O_RDWR | O_NONBLOCK); in open_socket()
72 fd = open(device, O_RDWR | O_NONBLOCK); in open_socket()
73 } while (fd == -1 && errno == EBUSY); in open_socket()
77 if (fd == -1) in open_socket()
80 if (ioctl(fd, BIOCVERSION, &pv) == -1) in open_socket()
90 if (ioctl(fd, BIOCSETIF, &ifr) == -1) in open_socket()
94 if (ioctl(fd, BIOCGBLEN, &buf_len) == -1) in open_socket()
105 if (ioctl(fd, BIOCIMMEDIATE, &flags) == -1) in open_socket()
119 if (ioctl(fd, BIOCSETF, &pf) == -1) in open_socket()
[all …]
/external/e2fsprogs/lib/blkid/
Dgetsize.c61 static int valid_offset(int fd, blkid_loff_t offset) in valid_offset() argument
65 if (blkid_llseek(fd, offset, 0) < 0) in valid_offset()
67 if (read(fd, &ch, 1) < 1) in valid_offset()
75 blkid_loff_t blkid_get_dev_size(int fd) in blkid_get_dev_size() argument
96 if (ioctl(fd, DKIOCGETBLOCKCOUNT, &size64) >= 0) { in blkid_get_dev_size()
112 ioctl(fd, BLKGETSIZE64, &size64) >= 0) { in blkid_get_dev_size()
121 if (ioctl(fd, BLKGETSIZE, &size) >= 0) in blkid_get_dev_size()
127 if (ioctl(fd, DIOCGMEDIASIZE, &size64) >= 0) in blkid_get_dev_size()
132 if (ioctl(fd, FDGETPRM, &this_floppy) >= 0) in blkid_get_dev_size()
145 if ((fstat(fd, &st) >= 0) && (S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode))) in blkid_get_dev_size()
[all …]
/external/linux-tools-perf/scripts/perl/
Drw-by-file.pl31 $common_pid, $common_comm, $nr, $fd, $buf, $count) = @_;
34 $reads{$fd}{bytes_requested} += $count;
35 $reads{$fd}{total_reads}++;
42 $common_pid, $common_comm, $nr, $fd, $buf, $count) = @_;
45 $writes{$fd}{bytes_written} += $count;
46 $writes{$fd}{total_writes}++;
57 foreach my $fd (sort {$reads{$b}{bytes_requested} <=>
59 my $total_reads = $reads{$fd}{total_reads};
60 my $bytes_requested = $reads{$fd}{bytes_requested};
61 printf("%6u %10u %10u\n", $fd, $total_reads, $bytes_requested);
[all …]
/external/e2fsprogs/e2fsck/
Drehash.c87 struct fill_dir_struct *fd = (struct fill_dir_struct *) priv_data; in fill_dir_block() local
98 if (offset + fs->blocksize > fd->inode->i_size) { in fill_dir_block()
99 fd->err = EXT2_ET_DIR_CORRUPTED; in fill_dir_block()
102 dir = (fd->buf+offset); in fill_dir_block()
108 fd->err = ext2fs_read_dir_block(fs, *block_nr, dir); in fill_dir_block()
109 if (fd->err) in fill_dir_block()
125 fd->err = EXT2_ET_DIR_CORRUPTED; in fill_dir_block()
131 if (!fd->compress && ((dirent->name_len&0xFF) == 1) && in fill_dir_block()
134 if (!fd->compress && ((dirent->name_len&0xFF) == 2) && in fill_dir_block()
136 fd->parent = dirent->inode; in fill_dir_block()
[all …]

12345678910>>...55