HomeSort by relevance Sort by last modified time
    Searched refs:a_fd (Results 1 - 7 of 7) sorted by null

  /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkgadm/
lock.c 180 static FINDLOCK_T lock_acquire(LOCK_T *a_lock, int *a_fd, char *a_root,
184 static int lock_release(int a_fd, char *a_key, char *a_object,
186 static int lock_status(int a_fd, char *a_key, char *a_object,
193 int a_fd, char *a_object, char *a_key);
194 static int _decrementLockCount(int a_fd, LOCK_T *a_theLock);
195 static int _addLock(char *r_key, int a_fd, char *a_object,
197 static int _incrementLockCount(int a_fd, LOCK_T *a_theLock);
198 static FINDLOCK_T _lock_acquire(LOCK_T *a_lock, int a_fd, char *a_key,
205 static boolean_t _validateLock(int a_fd, LOCK_T *a_theLock, int a_quiet);
598 * a_fd - file descriptor opened on the lock fil
    [all...]
  /onnv/onnv-gate/usr/src/lib/libinstzones/common/
zones_utils.c 35 * _z_close_file_descriptors - close a file descriptor "a_fd" not in the
139 * Description: close a file descriptor "a_fd" not in the list "a_fds"
145 * a_fd - [RO, *RO] - (int)
152 _z_close_file_descriptors(void *a_fds, int a_fd)
159 if (a_fd == STDIN_FILENO || a_fd == STDOUT_FILENO ||
160 a_fd == STDERR_FILENO) {
167 (void) close(a_fd);
178 if (fds[i] == a_fd) {
185 (void) close(a_fd);
    [all...]
instzones_lib.h 314 int _z_close_file_descriptors(void *a_fds, int a_fd);
  /onnv/onnv-gate/usr/src/lib/libpkg/common/
isdir.c 74 int isFdRemote(int a_fd);
255 * Arguments: a_fd - [RO, *RO] - (int)
264 isFdRemote(int a_fd)
269 r = fstat(a_fd, &statbuf);
pkglib.h 454 extern int isFdRemote(int a_fd);
  /onnv/onnv-gate/usr/src/uts/common/os/
fio.c 464 ASSERT(afd->a_fd[i] == -1);
465 afd->a_fd[i] = -1;
478 kmem_free(afd->a_fd, afd->a_nfd * sizeof (afd->a_fd[0]));
482 afd->a_fd = &afd->a_buf[0];
486 afd->a_fd[i] = -1;
508 if (afd->a_fd[i] == -1) {
509 afd->a_fd[i] = fd;
515 * Reallocate the a_fd[] array to add one more slot.
519 old_fd = afd->a_fd;
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
thread.h 75 * Each member of a_fd[] not equalling -1 represents an active fd.
79 kmutex_t a_fdlock; /* protects a_fd and a_nfd */
80 int *a_fd; /* pointer to list of fds */ member in struct:__anon1
81 int a_nfd; /* number of entries in *a_fd */
83 int a_buf[2]; /* buffer to which a_fd initially refers */

Completed in 3539 milliseconds