Searched defs:os (Results 76 - 100 of 136) sorted by relevance

123456

/illumos-gate/usr/src/tools/scripts/
H A Dwsdiff.py10 # or http://www.opensolaris.org/os/licensing.
72 import datetime, fnmatch, getopt, os, profile, commands namespace
233 os.system(cmd)
235 os.system(cmd)
245 os.unlink(tmp_od1)
249 os.unlink(tmp_od2)
268 tmpFile1 = tmpDir1 + os.path.basename(base) + t.getName()
269 tmpFile2 = tmpDir2 + os.path.basename(ptch) + t.getName()
427 if os.stat(f)[ST_SIZE] == 0 :
487 for path, subdirs, files in os
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dspace_map.c9 * or http://www.opensolaris.org/os/licensing.
239 objset_t *os = sm->sm_os; local
240 spa_t *spa = dmu_objset_spa(os);
248 ASSERT(dsl_pool_sync_context(dmu_objset_pool(os)));
298 dmu_write(os, space_map_object(sm),
319 dmu_write(os, space_map_object(sm), sm->sm_phys->smp_objsize,
353 space_map_open(space_map_t **smp, objset_t *os, uint64_t object, argument
360 ASSERT(os != NULL);
369 sm->sm_os = os;
400 objset_t *os local
462 space_map_alloc(objset_t *os, dmu_tx_t *tx) argument
[all...]
H A Dzfs_dir.c9 * or http://www.opensolaris.org/os/licensing.
586 objset_t *os = zfsvfs->z_os; local
618 error = dmu_free_long_range(os, zp->z_id, 0, DMU_OBJECT_END);
646 tx = dmu_tx_create(os);
H A Dzfs_fuid.c9 * or http://www.opensolaris.org/os/licensing.
114 zfs_fuid_table_load(objset_t *os, uint64_t fuid_obj, avl_tree_t *idx_tree, argument
121 VERIFY(0 == dmu_bonus_hold(os, fuid_obj,
134 VERIFY(dmu_read(os, fuid_obj, 0,
H A Ddsl_deleg.c9 * or http://www.opensolaris.org/os/licensing.
758 dsl_delegation_on(objset_t *os) argument
760 return (!!spa_delegation(os->os_spa));
H A Ddsl_prop.c9 * or http://www.opensolaris.org/os/licensing.
316 objset_t *os; local
319 error = dmu_objset_hold(dsname, FTAG, &os);
323 error = dsl_prop_get_ds(dmu_objset_ds(os), propname,
326 dmu_objset_rele(os, FTAG);
1141 dsl_prop_get_all(objset_t *os, nvlist_t **nvp) argument
1143 return (dsl_prop_get_all_ds(os->os_dsl_dataset, nvp, 0));
1149 objset_t *os; local
1160 error = dmu_objset_hold(dsname, FTAG, &os);
1163 error = dsl_prop_get_all_ds(os
[all...]
H A Ddsl_destroy.c9 * or http://www.opensolaris.org/os/licensing.
784 objset_t *os; local
785 VERIFY0(dmu_objset_from_ds(ds, &os));
796 zil_destroy_sync(dmu_objset_zil(os), tx);
933 objset_t *os; local
946 error = dmu_objset_own(name, DMU_OST_ANY, B_FALSE, FTAG, &os);
949 dsl_dataset_phys(dmu_objset_ds(os))->
952 error = dmu_object_next(os, &obj, FALSE,
954 (void) dmu_free_long_object(os, obj);
956 txg_wait_synced(dmu_objset_pool(os),
975 objset_t *os; local
[all...]
H A Ddsl_pool.c9 * or http://www.opensolaris.org/os/licensing.
345 objset_t *os; local
397 os = dmu_objset_create_impl(dp->dp_spa, ds,
401 zfs_create_fs(os, kcred, zplprops, tx);
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DOption.java9 * or http://www.opensolaris.org/os/licensing.
28 package org.opensolaris.os.dtrace;
H A DProbeData.java9 * or http://www.opensolaris.org/os/licensing.
28 package org.opensolaris.os.dtrace;
/illumos-gate/usr/src/lib/libcmd/common/
H A Dcp.c191 preserve(State_t* state, const char* path, struct stat* ns, struct stat* os) argument
195 if (tmxtouch(path, tmxgetatime(os), tmxgetmtime(os), TMX_NOTIME, 0))
197 n = ((ns->st_uid != os->st_uid) << 1) | (ns->st_gid != os->st_gid);
198 if (n && chown(state->path, os->st_uid, os->st_gid))
202 error(ERROR_SYSTEM|2, "%s: cannot reset group to %s", path, fmtgid(os->st_gid));
205 error(ERROR_SYSTEM|2, "%s: cannot reset owner to %s", path, fmtuid(os->st_uid));
208 error(ERROR_SYSTEM|2, "%s: cannot reset owner to %s and group to %s", path, fmtuid(os
[all...]
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DDecisionHistory.java10 * or http://www.opensolaris.org/os/licensing.
522 public void sync(OutputStream os) throws IOException argument
524 new ObjectOutputStream(os).writeObject(this);
/illumos-gate/usr/src/tools/onbld/Scm/
H A DWorkSpace.py47 import os namespace
354 if os.path.exists(self.ws.repo.join('localtags')):
463 self._file = os.path.join('cdm', 'worklist')
467 if os.path.exists(self._repo.join(self._file)):
501 dirn = os.path.split(self._file)[0]
503 if dirn and not os.path.exists(self._repo.join(dirn)):
505 os.makedirs(self._repo.join(dirn))
534 if os.path.exists(self._repo.join(self._file)):
535 os.unlink(self._repo.join(self._file))
823 if os
[all...]
/illumos-gate/usr/src/tools/onbld/hgext/
H A Dcdm.py72 import atexit, os, re, sys, stat, termios namespace
86 sys.path.insert(1, os.path.join(os.path.dirname(__file__), "..", "..", "..",
94 sys.path.insert(2, os.path.join(os.path.dirname(__file__), "..", ".."))
169 if os.path.exists(f):
632 mode = stat.S_IMODE(os.stat(f)[stat.ST_MODE])
935 if not os.getcwd().startswith(repo.root):
980 os.path.exists(repo.wjoin(f.parentname))]
1033 os
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dzlib.h115 int os; /* operating system */ member in struct:gz_header_s
677 deflate(). The text, time, os, extra field, name, and comment information
688 the time set to zero, and os set to 255, with no extra, name, or comment
830 The text, time, xflags, and os fields are filled in with the gzip header
/illumos-gate/usr/src/lib/libinetutil/common/
H A Dofmt.c9 * or http://www.opensolaris.org/os/licensing.
185 ofmt_state_t *os; local
226 os = calloc(sizeof (ofmt_state_t) +
228 if (os == NULL)
230 *ofmt = os;
231 os->os_fields = (ofmt_field_t *)&os[1];
232 os->os_flags = flags;
234 of = os->os_fields;
248 int nbad = os
296 ofmt_state_t *os = ofmt; local
314 ofmt_print_field(ofmt_state_t *os, ofmt_field_t *ofp, const char *value, boolean_t escsep) argument
421 ofmt_state_t *os = ofmt; local
507 ofmt_print_header(ofmt_state_t *os) argument
526 ofmt_state_t *os = ofmt; local
542 ofmt_state_t *os = ofmt; local
[all...]
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Ddoprnt.c10 * or http://www.opensolaris.org/os/licensing.
1254 char *os; /* save old string */ local
/illumos-gate/usr/src/cmd/vgrind/
H A Dvfontedpr.c121 static int width(char *s, char *os);
122 static int tabs(char *s, char *os);
124 static void putScp(char *os);
430 putScp(char *os) argument
432 char *s = os; /* pointer to unmatched string */
441 Start = os; /* remember the start for expmatch */
485 if (s != os)
501 if (s != os)
540 if (s != os)
671 tabs(char *s, char *os) argument
678 width(char *s, char *os) argument
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dzlib.h116 int os; /* operating system */ member in struct:gz_header_s
751 deflate(). The text, time, os, extra field, name, and comment information
762 the time set to zero, and os set to 255, with no extra, name, or comment
976 The text, time, xflags, and os fields are filled in with the gzip header
/illumos-gate/usr/src/lib/cfgadm_plugins/sbd/common/
H A Dap_sbd.c9 * or http://www.opensolaris.org/os/licensing.
404 DBG("ap_init bd=%d rs=%d os=%d type=<%s>\n",
938 cfga_stat_t os; local
944 os = (cfga_stat_t)dst->ds_ostate;
945 if (os != CFGA_STAT_CONFIGURED && os != CFGA_STAT_UNCONFIGURED)
948 *ostate = os;
1001 DBG("ap_cm_init bd=%d rs=%d os=%d type=<%s> seq=%d\n",
1014 ap_state(apd_t *a, cfga_stat_t *rs, cfga_stat_t *os) argument
1029 if (os !
[all...]
/illumos-gate/usr/src/common/unicode/
H A Du8_textprep.c9 * or http://www.opensolaris.org/os/licensing.
1059 uchar_t *disp, size_t last, uchar_t **os, uchar_t *oslast)
1285 p = *os;
1348 *os = p;
1058 do_composition(size_t uv, uchar_t *s, uchar_t *comb_class, uchar_t *start, uchar_t *disp, size_t last, uchar_t **os, uchar_t *oslast) argument
/illumos-gate/usr/src/cmd/oawk/
H A Drun.c9 * or http://www.opensolaris.org/os/licensing.
440 wchar_t *os; local
447 os = s;
474 os, os);
486 error(FATAL, "format item %.20ws... too long", os);
518 "not enough arguments in printf(%ws) or sprintf(%ws)", os, os);
1094 wchar_t *ss, *bp, *ep, *os; local
1112 os
[all...]
/illumos-gate/usr/src/cmd/awk/
H A Drun.c9 * or http://www.opensolaris.org/os/licensing.
788 register uchar *os; local
796 os = s;
820 "not enough args in printf(%s) or sprintf(%s)", os, os FATAL;
870 "not enough args in printf(%s) or sprintf(%s)", os, os FATAL;
/illumos-gate/usr/src/cmd/sysdef/
H A Dsysdef.c10 * or http://www.opensolaris.org/os/licensing.
103 char *os = "/dev/ksyms"; /* Wont always have a /kernel/unix */ variable
228 os = optarg;
257 if (((sysfile = fopen(os, "r")) == NULL) && nflag) {
258 fprintf(stderr, "cannot open %s\n", os);
290 os, elf_errmsg(-1));
296 os, elf_errmsg(-1));
303 fprintf(stderr, "%s: invalid file\n", os);
319 os, elf_errmsg(-1));
751 os, n
[all...]
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-thread.h750 k5_os_mutex os;
759 int err = k5_os_mutex_init(&m->os);
770 int err = k5_os_mutex_finish_init(&m->os);
779 (k5_os_mutex_assert_unlocked(&(M)->os), \
781 k5_os_mutex_destroy(&(M)->os))
787 _err = k5_os_mutex_lock(&_m->os); \
796 err = k5_os_mutex_lock(&m->os);
807 k5_os_mutex_unlock(&(M)->os))
809 #define k5_mutex_assert_locked(M) k5_os_mutex_assert_locked(&(M)->os)
810 #define k5_mutex_assert_unlocked(M) k5_os_mutex_assert_unlocked(&(M)->os)
744 k5_os_mutex os; member in struct:__anon4678
[all...]

Completed in 150 milliseconds

123456