Searched refs:fd (Results 76 - 100 of 283) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/include/
H A Dposixcompat.h24 iref_t posixcompat_pts_get_iref(int fd);
/barrelfish-2018-10-04/include/storage/
H A Dvsa.h22 int fd; member in struct:storage_vsa
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dfd_domain.pl41 the 'fd' attribute.
75 :- export struct(fd(domain, min, max, any)).
88 * fd with domain:D
92 * fd(_, _, _, D)
94 * min of fd
95 * is 3. All operations on the fd/4 structure should be done
104 :- meta_attribute(fd, [
114 suspension_lists: [min:(min of fd),
115 max:(max of fd),
116 any:(any of fd),
[all...]
H A Delipsys_fd.pl50 :- use_module(library(fd)).
82 :- elipsys_fd_init(fd with [], domain of fd, min of fd, max of fd, any of fd).
167 insert_suspension(X1-X2, Susp, min of fd, fd),
168 insert_suspension(X1-X2, Susp, max of fd, fd),
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dmd4.c103 int fd; local
107 fd=fileno(f);
111 i=read(fd,buf,sizeof buf);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/md2/
H A Dmd2.c102 int fd,i; local
105 fd=fileno(f);
109 i=read(fd,buf,BUFSIZE);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/md4/
H A Dmd4.c103 int fd; local
107 fd=fileno(f);
111 i=read(fd,buf,sizeof buf);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/md5/
H A Dmd5.c103 int fd; local
107 fd=fileno(f);
111 i=read(fd,buf,BUFSIZE);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ripemd/
H A Drmd160.c103 int fd; local
107 fd=fileno(f);
111 i=read(fd,buf,BUFSIZE);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/sha/
H A Dsha.c100 int fd; local
104 fd=fileno(f);
108 i=read(fd,buf,BUFSIZE);
H A Dsha1.c103 int fd; local
107 fd=fileno(f);
111 i=read(fd,buf,BUFSIZE);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/easy_tls/
H A Dtest.c24 test_process_init(int fd, int client_p, void *apparg) argument
26 fprintf(stderr, "test_process_init(fd = %d, client_p = %d, apparg = %p)\n", fd, client_p, apparg);
39 int s, fd, r; local
100 fd = s;
101 fprintf(stderr, "Connect (fd = %d).\n", fd);
141 fd = accept(s, NULL, 0);
142 if (fd == -1) {
147 fprintf(stderr, "Accept (fd
[all...]
/barrelfish-2018-10-04/usr/replay/
H A Ddefs.h41 uint8_t fd; member in struct:__anon1787
52 int fd; member in struct:trace_entry
64 uint8_t fd;
H A Dslave.c112 static int tfd2fd[MAX_FD_CONV] = {0}; /* trace fd -> fd */
113 static int tfd2fname[MAX_FD_CONV] = {0}; /* trace fd -> name */
114 wbuf_t *tfd2wb[MAX_FD_CONV] = {0}; /* trace fd -> write buffer */
196 dmsg("SLAVE[%u]: REQ pid:%d op:%d fd:%d fnumsize:%d [op_id:%d] er:%p\n", disp_get_core_id(), er->pid, op, er->fd, er->fnumsize, op_id, er);
236 wbuf_t *wb = tfd2wb[er->fd] = malloc(sizeof(wbuf_t));
239 wb->w_fd = er->fd;
243 /* assert(fd2fptr[er->fd] == NULL);
252 tfd2fd[er->fd]
275 int fd = tfd2fd[er->fd]; local
292 int fd = tfd2fd[er->fd]; local
315 int fd = tfd2fd[er->fd]; local
326 int fd = tfd2fd[er->fd]; local
350 int fd = tfd2fd[wb->w_fd]; local
[all...]
/barrelfish-2018-10-04/include/openssl/local/
H A De_os.h500 # define SHUTDOWN(fd) close(fd)
501 # define SHUTDOWN2(fd) close(fd)
527 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
528 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/
H A De_os.h499 # define SHUTDOWN(fd) close(fd)
500 # define SHUTDOWN2(fd) close(fd)
526 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
527 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
[all...]
/barrelfish-2018-10-04/lib/posixcompat/
H A Dpty.c71 int fd = 0; local
120 /* fd entry settings */
125 fd = fdtab_alloc(&e);
126 if (fd < 0) {
130 return fd;
142 int unlockpt(int fd) argument
144 struct fdtab_entry *e = fdtab_get(fd);
158 int grantpt(int fd) argument
160 struct fdtab_entry *e = fdtab_get(fd);
174 char *ptsname(int fd) argument
189 ptm_close(int fd) argument
216 ptm_read(int fd, void *buf, size_t count) argument
310 ptm_write(int fd, const void *buf, size_t count) argument
374 pts_close(int fd) argument
428 pts_read(int fd, void *buf, size_t count) argument
434 pts_write(int fd, const void *buf, size_t count) argument
448 posixcompat_pts_get_iref(int fd) argument
[all...]
H A Dinheritance.c24 int fd; member in struct:fd_store
63 lwip_serialise_sock(fds->fd, &si);
65 printf("LWIP socket\n\tfd: %d\n", fds->fd);
74 printf("fd %d fixed handle is: %d\n", fds->num, fds->fd);
119 /* first copy all the fd table entries */
130 fds->fd = fde->fd;
131 // Mark the inherited fd accordingly
133 printf("added fd
221 int fd = fdtab_alloc_from(&fde, fds->num); local
[all...]
/barrelfish-2018-10-04/lib/libc/sys/
H A Dutimensat.c41 utimensat(int fd, const char *path, const struct timespec times[2], int flag) argument
50 return (__sys_utimensat(fd, path, times, flag));
82 if (fstatat(fd, path, &sb, flag) == -1)
104 return (futimesat(fd, path, tvp));
106 (fd == AT_FDCWD || path[0] == '/'))
/barrelfish-2018-10-04/lib/libc/x86/sys/
H A D__vdso_gettc.c122 int fd; local
136 fd = _open(devname, O_RDONLY);
137 if (fd == -1) {
143 hpet_dev_map = mmap(NULL, PAGE_SIZE, PROT_READ, MAP_SHARED, fd, 0);
144 _close(fd);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Denc_read.c87 int DES_enc_read(int fd, void *buf, int len, DES_key_schedule *sched, argument
154 i=read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
156 i=_read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
180 i=read(fd,(void *)&(net[net_num]),rnum-net_num);
182 i=_read(fd,(void *)&(net[net_num]),rnum-net_num);
/barrelfish-2018-10-04/include/sys/
H A Dcapsicum.h60 * operation on an fd. These include: close, dup, dup2.
78 /* Allows for lseek(fd, 0, SEEK_CUR). */
365 cap_rights_t *cap_rights(struct filedesc *fdp, int fd);
367 int cap_ioctl_check(struct filedesc *fdp, int fd, u_long cmd);
369 int cap_fcntl_check(struct filedesc *fdp, int fd, int cmd);
396 int cap_rights_limit(int fd, const cap_rights_t *rights);
400 #define cap_rights_get(fd, rights) \
401 __cap_rights_get(CAP_RIGHTS_VERSION, (fd), (rights))
402 int __cap_rights_get(int version, int fd, cap_rights_t *rights);
406 int cap_ioctls_limit(int fd, cons
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/ccgost/
H A Dgostsum.c19 int hash_stream(gost_hash_ctx *ctx,int fd, char *sum);
151 int fd; local
152 if ((fd=open(filename,mode))<0)
157 if (!hash_stream(ctx,fd,sum))
162 close(fd);
166 int hash_stream(gost_hash_ctx *ctx,int fd, char *sum) argument
172 while ((bytes=read(fd,buffer,BUF_SIZE))>0)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/
H A De_ubsec.c392 int fd = 0; local
459 if (((fd = p_UBSEC_ubsec_open(UBSEC_KEY_DEVICE_NAME)) > 0) && (p_UBSEC_max_key_len_ioctl(fd, &max_key_len) == 0))
461 p_UBSEC_ubsec_close(fd);
560 int fd; local
581 if ((fd = p_UBSEC_ubsec_open(UBSEC_KEY_DEVICE_NAME)) <= 0) {
582 fd = 0;
587 if (p_UBSEC_rsa_mod_exp_ioctl(fd, (unsigned char *)a->d, BN_num_bits(a),
592 p_UBSEC_ubsec_close(fd);
597 p_UBSEC_ubsec_close(fd);
633 fd; local
744 int s_len = 160, r_len = 160, d_len, fd; local
823 int fd; local
879 fd; local
922 fd; local
1005 fd; local
[all...]
/barrelfish-2018-10-04/lib/libc/isc/
H A Dev_streams.c50 static void writable(evContext opaqueCtx, void *uap, int fd, int evmask);
51 static void readable(evContext opaqueCtx, void *uap, int fd, int evmask);
66 evWrite(evContext opaqueCtx, int fd, const struct iovec *iov, int iocnt, argument
76 new->fd = fd;
78 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0)
100 evRead(evContext opaqueCtx, int fd, const struct iovec *iov, int iocnt, argument
110 new->fd = fd;
112 if (evSelectFD(opaqueCtx, fd, EV_REA
269 writable(evContext opaqueCtx, void *uap, int fd, int evmask) argument
292 readable(evContext opaqueCtx, void *uap, int fd, int evmask) argument
[all...]

Completed in 213 milliseconds

1234567891011>>