HomeSort by: relevance | last modified time | path
    Searched refs:lock_type (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl2/lvm2/dist/include/
lvm-file.h 49 int fcntl_lock_file(const char *file, short lock_type, int warn_if_read_only);
  /src/external/gpl2/lvm2/dist/lib/misc/
lvm-file.h 49 int fcntl_lock_file(const char *file, short lock_type, int warn_if_read_only);
lvm-file.c 209 int fcntl_lock_file(const char *file, short lock_type, int warn_if_read_only)
215 .l_type = lock_type,
237 (lock_type == F_WRLCK) ? "F_WRLCK" : "F_RDLCK",
238 lock_type);
  /src/external/gpl2/lvm2/dist/lib/locking/
cluster_locking.c 389 const char *lock_type = ""; local
431 lock_type = "UN";
434 lock_type = "NL";
437 lock_type = "CR";
440 lock_type = "PR";
443 lock_type = "PW";
446 lock_type = "EX";
455 lock_type,
  /src/external/gpl2/lvm2/dist/tools/
toollib.h 29 uint32_t lock_type);
39 struct volume_group *vg, uint32_t lock_type,
  /src/usr.bin/scmdctl/
scmdctl.c 166 int lock_type = -1; local
527 lock_type = valid_cmd(lockcmdtypes,__arraycount(lockcmdtypes),argv[3]);
528 if (lock_type == -1) {
533 lock_type = lockcmdtypes[lock_type].id;
536 fprintf(stderr,"Lock type in lock command: %d\n",lock_type);
540 error = common_get_lock_state(&func_block, fd, debug, lock_type, &lock_state);
543 error = common_set_lock_state(&func_block, fd, debug, lock_type, SCMD_LOCK_LOCKED);
546 error = common_set_lock_state(&func_block, fd, debug, lock_type, SCMD_LOCK_UNLOCK);
608 if (lock_type == SCMD_LOCAL_USER_LOCK |
    [all...]
  /src/sys/kern/
vfs_trans.c 520 _fstrans_start(struct mount *mp, enum fstrans_lock_type lock_type, int wait)
540 if (__predict_true(grant_lock(fmi, lock_type))) {
542 fli->fli_lock_type = lock_type;
553 while (! grant_lock(fmi, lock_type))
556 fli->fli_lock_type = lock_type;
  /src/sys/uvm/
uvm_fault.c 275 krw_t lock_type; local
316 lock_type = rw_lock_op(anon->an_lock);
358 if (lock_type == RW_READER) {
406 rw_enter(anon->an_lock, lock_type);
421 KASSERT(lock_type == RW_WRITER);
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
parse.cc 3224 bool coarray, lock_type, event_type, allocatable, pointer; local
3225 coarray = lock_type = event_type = allocatable = pointer = false;
3274 /* Looking for lock_type components. */
3286 lock_type = 1;
3313 if (pointer && !coarray && lock_type)
3314 gfc_error ("Component %s at %L of type LOCK_TYPE must have a "
3321 "of type LOCK_TYPE, which must have a codimension or be a "
3324 if (lock_type && allocatable && !coarray)
3325 gfc_error ("Allocatable component %s at %L of type LOCK_TYPE must have "
3327 else if (lock_type && allocatable && c->ts.type == BT_DERIVE
    [all...]
resolve.cc 7982 "LOCK_TYPE nor have a LOCK_TYPE component if "
10215 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
10286 gfc_symbol *lock_type; local
10294 GFC_PREFIX ("lock_type"));
10296 lock_type = symtree->n.sym;
10299 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
10302 lock_type = symtree->n.sym;
10303 lock_type->attr.flavor = FL_DERIVED;
10304 lock_type->attr.zero_comp = 1
    [all...]

Completed in 61 milliseconds