Searched refs:dom (Results 1 - 25 of 90) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/include/asm/
H A Ddomain.h50 #define domain_val(dom,type) ((type) << (2*(dom)))
63 #define modify_domain(dom,type) \
67 domain &= ~domain_val(dom, DOMAIN_MANAGER); \
68 thread->cpu_domain = domain | domain_val(dom, type); \
74 #define modify_domain(dom,type) do { } while (0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Didmap.h53 NTSTATUS (*init)(struct idmap_domain *dom);
57 NTSTATUS (*unixids_to_sids)(struct idmap_domain *dom, struct id_map **ids);
61 NTSTATUS (*sids_to_unixids)(struct idmap_domain *dom, struct id_map **ids);
63 NTSTATUS (*set_mapping)(struct idmap_domain *dom, const struct id_map *map);
64 NTSTATUS (*remove_mapping)(struct idmap_domain *dom, const struct id_map *map);
68 NTSTATUS (*dump_data)(struct idmap_domain *dom, struct id_map **maps, int *num_maps);
71 NTSTATUS (*close_fn)(struct idmap_domain *dom);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/nsswitch/
H A Didmap.c200 static int close_domain_destructor(struct idmap_domain *dom) argument
204 ret = dom->methods->close_fn(dom);
206 DEBUG(3, ("Failed to close idmap domain [%s]!\n", dom->name));
271 struct idmap_domain *dom; local
363 dom = TALLOC_ZERO_P(idmap_ctx, struct idmap_domain);
364 IDMAP_CHECK_ALLOC(dom);
366 dom->name = talloc_strdup(dom, dom_list[i]);
367 IDMAP_CHECK_ALLOC(dom
809 struct idmap_domain *dom; local
848 struct idmap_domain *dom; local
908 struct idmap_domain *dom; local
928 struct idmap_domain *dom; local
1015 struct idmap_domain *dom; local
[all...]
H A Didmap_passdb.c32 static NTSTATUS idmap_pdb_init(struct idmap_domain *dom) argument
34 dom->initialized = True;
42 static NTSTATUS idmap_pdb_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids) argument
46 if (! dom->initialized) {
78 static NTSTATUS idmap_pdb_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids) argument
82 if (! dom->initialized) {
124 static NTSTATUS idmap_pdb_close(struct idmap_domain *dom) argument
H A Didmap_rid.c40 static NTSTATUS idmap_rid_initialize(struct idmap_domain *dom) argument
51 if ( (ctx = TALLOC_ZERO_P(dom, struct idmap_rid_context)) == NULL ) {
56 config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
96 ctx->domain_name = talloc_strdup( ctx, dom->name );
98 dom->private_data = ctx;
99 dom->initialized = True;
168 static NTSTATUS idmap_rid_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids) argument
176 if ( ! dom->initialized) {
177 ret = idmap_rid_initialize(dom);
183 ridctx = talloc_get_type(dom
210 idmap_rid_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids) argument
249 idmap_rid_close(struct idmap_domain *dom) argument
[all...]
H A Didmap_nss.c33 static NTSTATUS idmap_nss_int_init(struct idmap_domain *dom) argument
35 dom->initialized = True;
43 static NTSTATUS idmap_nss_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids) argument
48 if (! dom->initialized) {
52 ctx = talloc_new(dom);
93 ret = winbind_lookup_name(dom->name, name, ids[i]->sid, &type);
133 static NTSTATUS idmap_nss_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids) argument
138 if (! dom->initialized) {
142 ctx = talloc_new(dom);
208 static NTSTATUS idmap_nss_close(struct idmap_domain *dom) argument
[all...]
H A Didmap_ldap.c69 struct idmap_domain *dom,
82 if (!dom) {
83 /* only the alloc backend is allowed to pass in a NULL dom */
86 secret = idmap_fetch_secret("ldap", false, dom->name, tmp);
92 tmp, (dom==NULL)?"ALLOC":dom->name));
730 static NTSTATUS idmap_ldap_db_init(struct idmap_domain *dom) argument
743 ctx = TALLOC_ZERO_P(dom, struct idmap_ldap_context);
749 config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
767 if (dom
66 get_credentials( TALLOC_CTX *mem_ctx, struct smbldap_state *ldap_state, const char *config_option, struct idmap_domain *dom, char **dn ) argument
856 idmap_ldap_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids) argument
1072 idmap_ldap_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids) argument
1275 idmap_ldap_set_mapping(struct idmap_domain *dom, const struct id_map *map) argument
1384 idmap_ldap_close(struct idmap_domain *dom) argument
[all...]
H A Didmap_tdb.c614 static NTSTATUS idmap_tdb_db_init(struct idmap_domain *dom) argument
621 ctx = talloc(dom, struct idmap_tdb_context);
627 config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
647 dom->private_data = ctx;
648 dom->initialized = True;
797 static NTSTATUS idmap_tdb_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids) argument
804 if ( ! dom->initialized) {
805 ret = idmap_tdb_db_init(dom);
811 ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
843 static NTSTATUS idmap_tdb_sids_to_unixids(struct idmap_domain *dom, struc argument
889 idmap_tdb_set_mapping(struct idmap_domain *dom, const struct id_map *map) argument
1000 idmap_tdb_remove_mapping(struct idmap_domain *dom, const struct id_map *map) argument
1105 idmap_tdb_close(struct idmap_domain *dom) argument
1185 idmap_tdb_dump_data(struct idmap_domain *dom, struct id_map **maps, int *num_maps) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/utils/
H A Dnet_rpc_audit.c76 LSA_INFO_CTR dom; local
103 &dom);
109 for (i=0; i < dom.info.id2.count1; i++) {
117 val = audit_policy_str(mem_ctx, dom.info.id2.auditsettings[i]);
143 LSA_INFO_CTR dom; local
184 &dom);
190 dom.info.id2.auditsettings[audit_category] = audit_policy;
194 dom);
201 &dom);
204 const char *val = audit_policy_str(mem_ctx, dom
225 LSA_INFO_CTR dom; local
304 LSA_INFO_CTR dom; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/dom/
H A DMakefile.am13 dom2calc_SOURCES = $(SOAPHEADER) dom2calc.cpp $(SOAP_CPP_CORE) ../../dom.cpp
H A DMakefile.in41 subdir = gsoap/samples/dom
54 $(am__objects_2) dom.$(OBJEXT)
224 dom2calc_SOURCES = $(SOAPHEADER) dom2calc.cpp $(SOAP_CPP_CORE) ../../dom.cpp
240 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gsoap/samples/dom/Makefile'; \
242 $(AUTOMAKE) --foreign gsoap/samples/dom/Makefile
274 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dom.Po@am__quote@
292 dom.o: ../../dom.cpp
293 @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom.o -MD -MP -MF $(DEPDIR)/dom
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/dom/
H A DMakefile.am13 dom2calc_SOURCES = $(SOAPHEADER) dom2calc.cpp $(SOAP_CPP_CORE) ../../dom.cpp
H A DMakefile.in41 subdir = gsoap/samples/dom
54 $(am__objects_2) dom.$(OBJEXT)
224 dom2calc_SOURCES = $(SOAPHEADER) dom2calc.cpp $(SOAP_CPP_CORE) ../../dom.cpp
240 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gsoap/samples/dom/Makefile'; \
242 $(AUTOMAKE) --foreign gsoap/samples/dom/Makefile
274 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dom.Po@am__quote@
292 dom.o: ../../dom.cpp
293 @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom.o -MD -MP -MF $(DEPDIR)/dom
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/xen/interface/
H A Devent_channel.h18 * EVTCHNOP_alloc_unbound: Allocate a port in domain <dom> and mark as
20 * is allocated in <dom> and returned as <port>.
22 * 1. If the caller is unprivileged then <dom> must be DOMID_SELF.
28 domid_t dom, remote_dom; member in struct:evtchn_alloc_unbound
120 * has an endpoint at <dom, port>.
122 * 1. <dom> may be specified as DOMID_SELF.
124 * channel for which <dom> is not DOMID_SELF.
129 domid_t dom; member in struct:evtchn_status
142 domid_t dom; member in struct:evtchn_status::__anon18738::__anon18739
145 domid_t dom; member in struct:evtchn_status::__anon18738::__anon18740
[all...]
H A Dgrant_table.h161 * GNTTABOP_map_grant_ref: Map the grant entry (<dom>,<ref>) for access
183 domid_t dom; member in struct:gnttab_map_grant_ref
214 * GNTTABOP_setup_table: Set up a grant table for <dom> comprising at least
218 * 1. <dom> may be specified as DOMID_SELF.
219 * 2. Only a sufficiently-privileged domain may specify <dom> != DOMID_SELF.
225 domid_t dom; member in struct:gnttab_setup_table
240 domid_t dom; member in struct:gnttab_dump_table
310 * 1. <dom> may be specified as DOMID_SELF.
311 * 2. Only a sufficiently-privileged domain may specify <dom> != DOMID_SELF.
316 domid_t dom; member in struct:gnttab_query_size
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/
H A DMakefile.am7 calc calc++ dime dom events events++ factory factorytest gmt \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/
H A DMakefile.am7 calc calc++ dime dom events events++ factory factorytest gmt \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptpd/pptpd-1.3.4/tools/
H A Dvpnuser47 dom=`echo $3 | tr A-Z a-z`
49 echo "$dom\\\\$DATA" >> $config
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/sunrpc/
H A Dsvcauth_gss.h22 u32 svcauth_gss_flavor(struct auth_domain *dom);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Damd_iommu.c833 static int iommu_map_page(struct protection_domain *dom, argument
848 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
868 update_domain(dom);
873 static unsigned long iommu_unmap_page(struct protection_domain *dom, argument
886 pte = fetch_pte(dom, bus_addr);
1025 static void dma_ops_reserve_addresses(struct dma_ops_domain *dom, argument
1029 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1037 __set_bit(page, dom->aperture[index]->bitmap);
1135 struct dma_ops_domain *dom,
1141 unsigned long next_bit = dom
1134 dma_ops_area_alloc(struct device *dev, struct dma_ops_domain *dom, unsigned int pages, unsigned long align_mask, u64 dma_mask, unsigned long start) argument
1178 dma_ops_alloc_addresses(struct device *dev, struct dma_ops_domain *dom, unsigned int pages, unsigned long align_mask, u64 dma_mask) argument
1214 dma_ops_free_addresses(struct dma_ops_domain *dom, unsigned long address, unsigned int pages) argument
1333 dma_ops_domain_free(struct dma_ops_domain *dom) argument
1615 struct protection_domain *dom; local
1776 dma_ops_get_pte(struct dma_ops_domain *dom, unsigned long address) argument
1803 dma_ops_domain_map(struct dma_ops_domain *dom, unsigned long address, phys_addr_t paddr, int direction) argument
1837 dma_ops_domain_unmap(struct dma_ops_domain *dom, unsigned long address) argument
2418 amd_iommu_domain_init(struct iommu_domain *dom) argument
2441 amd_iommu_domain_destroy(struct iommu_domain *dom) argument
2460 amd_iommu_detach_device(struct iommu_domain *dom, struct device *dev) argument
2483 amd_iommu_attach_device(struct iommu_domain *dom, struct device *dev) argument
2513 amd_iommu_map(struct iommu_domain *dom, unsigned long iova, phys_addr_t paddr, int gfp_order, int iommu_prot) argument
2533 amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova, int gfp_order) argument
2550 amd_iommu_iova_to_phys(struct iommu_domain *dom, unsigned long iova) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/popt/
H A Dpoptint.h107 #define D_(dom, str) dgettext(dom, str)
110 #define D_(dom, str) str
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/sys/sunos/
H A Dat_sun.c89 struct domain *dom; local
175 for ( dom = domains; dom->dom_next; dom = dom->dom_next ) {
176 if ( dom->dom_next == &atalkdomain ) {
177 dom->dom_next = dom->dom_next->dom_next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/wsse/
H A DMakefile.am14 wssedemo_SOURCES = wssedemo.c $(SOAPHEADER) $(SOAP_C_SRC) ../../dom.c ../../plugin/wsseapi.c ../../plugin/smdevp.c
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/wsse/
H A DMakefile.am14 wssedemo_SOURCES = wssedemo.c $(SOAPHEADER) $(SOAP_C_SRC) ../../dom.c ../../plugin/wsseapi.c ../../plugin/smdevp.c
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/
H A Dsvcauth.c127 void auth_domain_put(struct auth_domain *dom) argument
129 if (atomic_dec_and_lock(&dom->ref.refcount, &auth_domain_lock)) {
130 hlist_del(&dom->hash);
131 dom->flavour->domain_release(dom);

Completed in 141 milliseconds

1234