Searched refs:dict (Results 26 - 45 of 45) sorted by relevance

12

/osnet-11/usr/src/lib/pyzfs/common/
H A Duserspace.py62 """Return a dict("field": value) for this domain (string) + rid (int)"""
79 v = dict()
103 """Update the acct dict to incorporate the
213 # Due to -i, we need to keep a dict, so we can potentially add
215 acct = dict()
H A Ddataset.py71 proptable = dict()
107 props is the property settings dict from zfs.ioctl.next_dataset.
193 d is a dict specifying which permissions to add/remove:
202 Return a dict("whostr": { "perm" -> None })."""
209 Return a dict("tag": timestamp)."""
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dnvdisc.c37 int nv_compare(Dt_t* dict, Void_t *sp, Void_t *dp, Dtdisc_t *disc) argument
1235 Dt_t *dict; member in struct:table
1244 return((Namval_t*)dtfirst(tp->dict));
1251 return(nv_create(name, tp->dict, flags, fp));
1258 Dt_t *oroot=tp->dict,*nroot=dtopen(&_Nvdisc,Dtoset);
1262 ntp->dict = nroot;
1274 register Dt_t *root = ((struct table*)fp)->dict;
1300 register Dt_t *root = ((struct table*)fp)->dict;
1351 return(tp->dict);
1356 return(tp->dict);
1374 nv_mount(Namval_t *np, const char *name, Dt_t *dict) argument
[all...]
H A Dsubshell.c54 Dt_t *dict; member in struct:Link
286 lp->dict = dp;
287 mp = (Namval_t*)&lp->dict;
313 np = (Namval_t*)&lp->dict;
362 dtinsert(lp->dict,mp);
H A Dinit.c1856 Dt_t *base_treep, *dict; local
1892 nv_mount(np,(const char*)0,dict=dtopen(&_Nvdisc,Dtoset));
1899 treep = dict;
H A Dname.c2153 static int scanfilter(Dt_t *dict, void *arg, void *data) argument
2160 NOT_USED(dict);
/osnet-11/usr/src/grub/grub2/grub-core/lib/minilzo/
H A Dminilzo.c3019 # define GINDEX(m_pos,m_off,dict,dindex,in) m_pos = dict[dindex]
3022 # define GINDEX(m_pos,m_off,dict,dindex,in) m_off = dict[dindex]
3027 # define UPDATE_D(dict,drun,dv,p,in) dict[ DINDEX(dv,p) ] = DENTRY(p,in)
3028 # define UPDATE_I(dict,drun,index,p,in) dict[index] = DENTRY(p,in)
3033 # define UPDATE_D(dict,drun,dv,p,in) \
3034 dict[ DINDE
3174 lzo_dict_p const dict = (lzo_dict_p) wrkmem; local
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dmime.c778 mp->dict.key = offsetof(Ent_t, name);
779 mp->dict.comparf = order;
780 mp->dict.freef = drop;
781 if (!(mp->buf = sfstropen()) || !(mp->cap = dtopen(&mp->dict, Dtorder)))
H A Dtranslate.c71 Dtdisc_t message_disc; /* message dict discipline */
72 Dtdisc_t catalog_disc; /* catalog dict discipline */
101 * add msg to dict
105 entry(Dt_t* dict, int set, int seq, const char* msg) argument
114 if (!dtinsert(dict, mp))
H A Dmagic.c181 Dtdisc_t dtdisc; /* dict discipline */ \
182 Dt_t* idtab; /* identifier dict */ \
183 Dt_t* infotab; /* info keyword dict */
187 static Info_t dict[] = /* keyword dictionary */ variable
1186 for (q = 0; q < elementsof(dict); q++)
1187 dtinsert(mp->idtab, &dict[q]);
H A Doptget.c819 static Dt_t* dict; local
821 if (!dict)
826 if (!(dict = dtopen(d, Dthash)))
839 if (!(p = (Save_t*)dtmatch(dict, buf)))
844 dtinsert(dict, p);
/osnet-11/usr/src/lib/fm/libfmd_adm/common/
H A Dfmd_adm.c735 char *p, *urlcode, *dict, *olang; local
743 dict = alloca((size_t)(p - acp->aci_code) + 1);
744 (void) strncpy(dict, acp->aci_code,
746 dict[(size_t)(p - acp->aci_code)] = '\0';
755 } else if ((url = dgettext(dict, url_token)) == url_token) {
763 if ((url = dgettext(dict, url_token)) == url_token)
/osnet-11/usr/src/lib/fm/libfmnotify/common/
H A Dlibfmnotify.c472 nd_get_diagcode(nd_hdl_t *nhdl, const char *dict, const char *class, char *buf, argument
485 if ((dhp = fm_dc_opendict(FM_DC_VERSION, dirpath, dict)) == NULL) {
487 dirpath, dict);
536 * diagcode using the dict name and class.
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/
H A Dbootconfig.py800 self.__dict__['_attributes'] = dict(copysrc._attributes)
857 defattr = dict(BootInstance._attributes)
864 they need to preserve that are not in the class's _attributes dict.
974 """Returns the platform-specific default-attribute dict (if it exists)
975 otherwise returns the _attributes dict (if it exists), otherwise
1112 kwargs = dict(kwargs)
1176 self._debug('Applying dict %s to _attributes', attrdict)
1184 kwargs = dict(kwargs)
/osnet-11/usr/src/lib/pylibbe/common/
H A Dlibbe.py404 """Return a dict describing the active on boot boot environment."""
411 """Return a dict describing the active boot environment."""
739 if init_argdict and isinstance(init_argdict, dict):
740 kwargs = dict(init_argdict)
/osnet-11/usr/src/lib/rad/pyrad/common/
H A Dclient.py422 self._fields = dict([(i._name, i) for i in self._pfields])
744 self._attributes = dict([[i._name, i] for i in unpacker.unpack_array(
748 self._events = dict([[i._name, i] for i in unpacker.unpack_array(
803 self._methods = dict([[i._name, i] for i in self._type._methods])
884 self._keys = dict(kvs)
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/backend/loader/
H A Dgrub2.py112 """Update the options dict in this instance with the newdict passed in.
138 """Returns a dict with the options passed in, stringified.
140 options = dict(options) # Do not modify the original dict
149 """Return a copy to the options dict so no one can modify it.
150 Ideally, it would be an immutable dict.
152 return dict(self._options)
344 self._meta_options = dict(self._cfgparser.items('meta'))
346 self.global_options = dict(self._cfgparser.items('global'))
1525 """Generate a dict wit
[all...]
H A Dlegacygrub.py76 # This dict is applied to the menu.lst template (below)
950 propdict = dict([(k, v) for k, v in propdict.items()
1444 if isinstance(platdict, dict) and platdict.get(BootLoader.PLATOPT_MBR):
/osnet-11/usr/src/tools/onbld/Scm/
H A DWorkSpace.py184 # We maintain a dict dest -> source of all copies
564 return dict(zip(states, chngs))
/osnet-11/usr/src/grub/grub2/docs/
H A Dtexinfo.tex1660 12 dict begin
1746 12 dict begin
1834 12 dict begin

Completed in 96 milliseconds

12