Searched refs:name (Results 1 - 25 of 117) sorted by relevance

12345

/solaris-userland/components/samba/Solaris/include/samfs/
H A Dlib.h26 * information: Portions Copyright [yyyy] [name of copyright owner]
50 int sam_archive(const char *name, const char *opns);
51 int sam_unarchive(const char *name, int num_opts, ...);
52 int sam_rearch(const char *name, int num_opts, ...);
53 int sam_unrearch(const char *name, int num_opts, ...);
54 int sam_exarchive(const char *name, int num_opts, ...);
55 int sam_damage(const char *name, int num_opts, ...);
56 int sam_undamage(const char *name, int num_opts, ...);
58 int sam_cancelstage(const char *name);
60 int sam_release(const char *name, cons
[all...]
/solaris-userland/components/openstack/nova/files/solariszones/
H A Dsysconfig.py34 name="openstack")
38 type="service", name="network/physical")
40 name="default")
42 name="netcfg")
43 etree.SubElement(pg, "propval", type="astring", name="active_ncp",
48 type="service", name="network/install")
50 name="default")
60 name="install_ipv4_interface_%d" % netid)
61 etree.SubElement(pg4, "propval", type="astring", name="address_type",
66 name
[all...]
H A Ddriver.py99 'the name of a supported OpenSSL cipher algorithm.'),
150 # Mapping between supported zone brands and the name of the corresponding
215 if propertee.name == prop and propertee.value == value:
257 def create(self, context, size, name, description, snapshot=None,
266 :param name: display_name of the new volume
299 kwargs['display_name'] = name
302 kwargs['name'] = name
321 :param fields: a dictionary of of the name/value pairs to update
358 % (self.zone.name, reaso
[all...]
/solaris-userland/components/foomatic/filters/Solaris/
H A Dwecho.sh17 # information: Portions Copyright [yyyy] [name of copyright owner]
52 while getopts en name
54 case $name in
/solaris-userland/components/openstack/cinder/files/zfssa/
H A Dcinder.akwf18 name: 'Configuration for OpenStack Cinder Driver',
23 name: {
81 var msg = 'User ' + params.name;
85 run('select ' + params.name);
88 run('user ' + params.name);
92 run('select ' + params.name);
/solaris-userland/components/krb5/Solaris/
H A Dg_utils.c43 char *name, *next; local
86 name = &(buf[0]);
87 while (isspace(*name))
88 name++;
89 if (*name == '\0') /* blank line */
92 qopname = name; /* will contain qop name */
100 qop_num_pairs[qop_num_pair_cnt].qop = strdup(name);
104 name = next;
105 while (isspace(*name))
[all...]
H A Drc_mem.c153 return (((struct mem_data *)(id->data))->name);
221 krb5_rc_mem_resolve(krb5_context context, krb5_rcache id, char *name) argument
245 if (name) {
246 t->name = malloc(strlen(name)+1);
247 if (!t->name) {
251 strcpy(t->name, name);
253 t->name = 0;
266 if (t->name)
[all...]
/solaris-userland/tools/
H A Dsunw-history-package18 # information: Portions Copyright [yyyy] [name of copyright owner]
46 if (m{set\s+name=pkg.fmri\s+value=pkg://.+/(.+):.+$}) {
57 set name=pkg.fmri value=pkg:/$package
58 set name=pkg.renamed value=true
60 set name=org.opensolaris.consolidation value=\$(CONSOLIDATION)
62 set name=variant.opensolaris.zone value=global value=nonglobal
63 set name=variant.arch value=\$(ARCH)
75 Usage: $program (--package (new-ips-name)) ...
90 open($FP, "$PKG search -r -H -o pkg.name 'SUNW*:depend::*/$_' |");
H A Duserland-incorporator18 # information: Portions Copyright [yyyy] [name of copyright owner]
47 name = None
51 def __init__(self, name, version):
52 self.name = name
56 def __package_to_str(self, name, version):
62 return "depend fmri=%s@%s facet.version-lock.%s=true type=incorporate" % (name, version, name)
64 def add_package(self, name, version):
65 self.packages[name]
[all...]
H A Duserland-fetch18 # information: Portions Copyright [yyyy] [name of copyright owner]
159 True, throw away any error messages. Returns the name of the file to
197 # return the name of the file that we downloaded the data to.
208 The filename argument is the name of the expected file to download, so
218 name, version = re.match("/(.*)==(.*)$", path).groups()
224 jsurl = "http://pypi.python.org/pypi/%s/json" % name
226 jsurl = "http://%s/pypi/%s/json" % (host, name)
233 print "Unknown component '%s'" % name
304 name = file_arg
311 elif name an
[all...]
/solaris-userland/components/krb5/Solaris/private/krb5/
H A Dprof_solaris.h30 char *name; member in struct:_profile_options
36 char *name; member in struct:_profile_times
53 long k5_profile_get_realm_entry(profile_t profile, char *realm, char *name,
55 long k5_profile_add_realm_entry(profile_t profile, char *realm, char *name,
57 long k5_profile_get_libdefaults_entry(profile_t profile, char *name,
59 long k5_profile_add_libdefaults_entry(profile_t profile, char *name,
/solaris-userland/components/sendmail/files/
H A Dsendmail_include.sh18 # information: Portions Copyright [yyyy] [name of copyright owner]
83 name=`basename "$m4_path" .mc`
89 m4 $m4flags /etc/mail/cf/m4/cf.m4 "$base" > "${name}.cf"
91 cmp -s "${name}.cf" "$cf_path" || (
92 cp "${name}.cf" "${cf_path}.tmp" &&
/solaris-userland/components/openstack/neutron/files/agent/solaris/
H A Dpacketfilter.py125 def add_table(self, name, subanchors=None):
127 cmd = self._build_pfctl_cmd(['-a', anchor_path, '-t', name,
131 def add_table_entry(self, name, cidrs, subanchors=None):
133 cmd = self._build_pfctl_cmd(['-a', anchor_path, '-t', name,
138 def replace_table_entry(self, name, cidrs, subanchors=None):
140 cmd = self._build_pfctl_cmd(['-a', anchor_path, '-t', name,
145 def table_exists(self, name, subanchors=None):
148 cmd = self._build_pfctl_cmd(['-a', anchor_path, '-t', name,
155 def remove_table(self, name, subanchors=None):
156 if not self.table_exists(name, subanchor
[all...]
/solaris-userland/components/desktop/desktop-cache/files/
H A Dgconf-cache25 # Except as contained in this notice, the name of a copyright holder
61 SCHEMAS=`${FIND_NEWER} -f -m -c --name '*.schemas' \
64 ENTRIES=`${FIND_NEWER} -f -m -c --name '*.entries' \
68 SCHEMAS=`/usr/bin/find /etc/gconf/schemas -name '*.schemas' ! -type d`
69 ENTRIES=`/usr/bin/find /etc/gconf/schemas -name '*.entries' ! -type d`
120 -name '*.schemas' 2>/dev/null`
122 -name '*.entries' 2>/dev/null`
124 SCHEMAS=`/usr/bin/find /etc/gconf/schemas -name '*.schemas' ! -type d`
125 ENTRIES=`/usr/bin/find /etc/gconf/schemas -name '*.entries' ! -type d`
/solaris-userland/tools/python/pkglint/
H A Duserland.py18 # information: Portions Copyright [yyyy] [name of copyright owner]
42 name = "userland.action" variable in class:UserlandActionChecker
134 if atype and action.name != atype:
276 msgid="%s%s.5" % (self.name, "001"))
285 msgid="%s%s.6" % (self.name, "001"))
337 self.ref_paths[pdir][0][1].name == "link"):
341 msgid="%s%s.3" % (self.name, "001"))
352 msgid="%s%s.3" % (self.name, "001"))
362 msgid="%s%s.3" % (self.name, "001"))
404 if action.name no
515 name = "userland.manifest" variable in class:UserlandManifestChecker
[all...]
/solaris-userland/components/texinfo/
H A Dsvc-texinfo-update18 # information: Portions Copyright [yyyy] [name of copyright owner]
34 while getopts f name; do
35 case $name in
105 for link in $(find ${TEXINFO_DATA_DIR} -type l -name '*.backlink') ; do
/solaris-userland/components/openstack/ironic/files/
H A Dironic-manifest.ksh84 /usr/bin/aimanifest delete ${software_data_path}/name
86 /usr/bin/aimanifest add ${software_data_path}/name ${SI_SYSPKG}
97 /auto_install/ai_instance/software[@type="IPS"]/software_data[@action="install"]/name \
127 /usr/bin/aimanifest add ${software_data_path}/name ${DEFAULT_SERVER_PKG}
165 pub_name=$(/usr/bin/aimanifest get ${pub}@name 2> /dev/null)
175 origin_name=$(/usr/bin/aimanifest get ${origin}@name 2> /dev/null)
201 ${software_path}/source/publisher@name ${publisher_name} 2> /dev/null)
202 /usr/bin/aimanifest add ${publisher_path}/origin@name ${publisher_origin}
210 ${software_source_path}/publisher@name ${publisher_name} 2> /dev/null)
211 /usr/bin/aimanifest add ${publisher_path}/origin@name
[all...]
/solaris-userland/components/rsyslog/
H A DMakefile17 # information: Portions Copyright [yyyy] [name of copyright owner]
125 find . \( -name '_sources' \
126 -o -name '.doctrees' \
127 -o -name '.buildinfo' \
128 -o -name 'objects.inv' \) \
/solaris-userland/components/gutenprint/
H A Dgutenprint.startup10 # <pg/prop> ... property group/name where to store status
23 # package name
27 VER=`pkg contents -H -a name=pkg.fmri -o value $PKG | cut -d @ -f 2`
/solaris-userland/components/getopt/
H A DMakefile17 # information: Portions Copyright [yyyy] [name of copyright owner]
30 COMPONENT_PROJECT_URL= http://frodo.looijaard.name/project/getopt/
33 COMPONENT_ARCHIVE_URL= http://frodo.looijaard.name/system/files/software/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
/solaris-userland/components/ocaml/files/
H A Docamlplugininfo.ml77 let print_infos name crc defines cmi cmx =
78 let print_name_crc (name, crc) =
79 printf "@ %s (%s)" name (Digest.to_hex crc)
82 printf "Name: %s@." name;
103 ui.name
/solaris-userland/components/openvswitch/files/lib/
H A Ddpif-solaris.c66 char *name; member in struct:dpif_solaris
119 char *name; member in struct:dpif_solaris_bridge
131 char *name; member in struct:dpif_solaris_port
212 dpif_solaris_open(const struct dpif_class *class, const char *name, argument
220 VLOG_DBG("dpif_solaris_open class type %s name %s do %screate",
221 class->type, name, create ? "" : "not ");
223 if (strcmp(name, "ovs-system") != 0)
233 dpif = shash_find_data(&dp_all_solaris, name);
265 dpif->name = xstrdup(name);
415 char *name; local
758 const char *name = netdev_vport_get_dpif_port(netdev, local
1083 char *name; member in struct:dpif_solaris_port_state
1087 port_dump_start(void *arg, const char *name, char *type, odp_port_t portno) argument
1796 walk_flow(void *arg, const char *name, struct flow *f, struct flow *m, struct ofpbuf *action, uint64_t npackets, uint64_t nbytes, uint64_t lastused) argument
[all...]
H A Droute-table-solaris.c66 route_table_get_name(ovs_be32 ip, char name[IFNAMSIZ]) argument
134 memcpy(name, sdlp->sdl_data, namelen);
135 name[namelen] = '\0';
/solaris-userland/components/openstack/horizon/files/
H A Doverrides.py81 name = _("Advanced Options") variable in class:SolarisSetAdvancedAction.Meta
144 name = _("Instance Boot Options") variable in class:UpdateInstanceBootargAction.Meta
203 name = _("Flavor Information") variable in class:SolarisCreateFlavorInfoAction.Meta
219 name = _("Flavor Information") variable in class:SolarisUpdateFlavorInfoAction.Meta
242 name=data['name'],
287 # Then create a new flavor with the same name but a new ID.
290 # active flavors can't have the same name.
292 data['name'],
338 'name'
[all...]
/solaris-userland/components/stdcxx/Solaris/
H A Dinstall.sh18 # information: Portions Copyright [yyyy] [name of copyright owner]
190 find . -type f -name "*.~1~" -exec rm -f {} \; > /dev/null 2>&1
191 find . -type f -name "*.~2~" -exec rm -f {} \; > /dev/null 2>&1
192 find . -type f -name "*.~3~" -exec rm -f {} \; > /dev/null 2>&1
218 find . -type f -name "*.html" -exec chmod 0644 {} \; > /dev/null 2>&1
219 find . -type f -name "*.gif" -exec chmod 0644 {} \; > /dev/null 2>&1
220 find . -type f -name "*.css" -exec chmod 0644 {} \; > /dev/null 2>&1

Completed in 1891 milliseconds

12345