Searched refs:psd (Results 1 - 25 of 66) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_cpu.c32 struct pst_dynamic psd; local
34 return ((u_int32_t)pstat_getdynamic(&psd,
35 sizeof(psd), (size_t)1, 0) == -1 ? 1 : psd.psd_proc_cnt);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_parse/
H A Dparse_sec.c215 SEC_DESC *psd; local
220 psd = *ppsd;
222 if (psd == NULL) {
224 if((psd = PRS_ALLOC_MEM(ps,SEC_DESC,1)) == NULL)
226 *ppsd = psd;
239 if(!prs_uint16("revision ", ps, depth, &psd->revision))
242 if(!prs_uint16("type ", ps, depth, &psd->type))
252 if (psd->sacl != NULL) {
253 psd->off_sacl = offset;
254 offset += psd
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dsecdesc.c30 size_t sec_desc_size(SEC_DESC *psd) argument
34 if (!psd) return 0;
40 if (psd->owner_sid != NULL)
41 offset += sid_size(psd->owner_sid);
43 if (psd->grp_sid != NULL)
44 offset += sid_size(psd->grp_sid);
46 if (psd->sacl != NULL)
47 offset += psd->sacl->size;
49 if (psd->dacl != NULL)
50 offset += psd
137 SEC_DESC *psd = NULL; local
319 sec_desc_add_sid(TALLOC_CTX *ctx, SEC_DESC **psd, DOM_SID *sid, uint32 mask, size_t *sd_size) argument
371 sec_desc_del_sid(TALLOC_CTX *ctx, SEC_DESC **psd, DOM_SID *sid, size_t *sd_size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/sys/solaris/
H A Dsock.c94 struct sock_data *psd; local
117 for ( psd = sockets; psd != NULL; psd = psd->sd_next ) {
118 if ( port == psd->sd_sat.sat_port &&
119 psat.sat_addr.s_net == psd->sd_sat.sat_addr.s_net &&
120 psat.sat_addr.s_node == psd->sd_sat.sat_addr.s_node ) {
124 if ( psd == NULL ) {
128 if ( psd !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/sys/solaris/
H A Dsock.c94 struct sock_data *psd; local
117 for ( psd = sockets; psd != NULL; psd = psd->sd_next ) {
118 if ( port == psd->sd_sat.sat_port &&
119 psat.sat_addr.s_net == psd->sd_sat.sat_addr.s_net &&
120 psat.sat_addr.s_node == psd->sd_sat.sat_addr.s_node ) {
124 if ( psd == NULL ) {
128 if ( psd !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dac3.c55 void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd, argument
62 psd[bin]=(3072 - (exp[bin] << 7));
69 v=psd[j];
74 int adr = FFMIN(FFABS(v - psd[j]) >> 1, 255);
75 v = FFMAX(v, psd[j]) + ff_ac3_log_add_tab[adr];
180 void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end, argument
198 address = av_clip((psd[i] - v) >> 5, 0, 63);
214 int16_t psd[256]; /* scaled exponents */ local
218 ff_ac3_bit_alloc_calc_psd(exp, start, end, psd, band_psd);
224 ff_ac3_bit_alloc_calc_bap(mask, psd, star
[all...]
H A Dac3.h118 * the spectral envelope (exponents). The psd is also separately grouped
120 * 128 units in psd = -6 dB. The dbknee parameter in AC3BitAllocParameters
126 * @param[out] psd signal power for each frequency bin
129 void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd,
167 * @param[in] psd signal power for each frequency bin
175 void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end,
H A Dac3dec.h133 int16_t psd[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< scaled exponents member in struct:__anon484
H A Dac3enc.c421 int16_t psd[NB_BLOCKS][AC3_MAX_CHANNELS][N/2],
430 memcpy(psd[blk][ch], psd[blk-1][ch], (N/2)*sizeof(int16_t));
435 psd[blk][ch], band_psd[blk][ch]);
449 int16_t psd[NB_BLOCKS][AC3_MAX_CHANNELS][N/2],
464 ff_ac3_bit_alloc_calc_bap(mask[i][ch], psd[i][ch], 0,
491 int16_t psd[NB_BLOCKS][AC3_MAX_CHANNELS][N/2]; local
550 /* calculate psd and masking curve before doing bit allocation */
551 bit_alloc_masking(s, encoded_exp, exp_strategy, psd, mask);
558 bit_alloc(s, mask, psd, ba
418 bit_alloc_masking(AC3EncodeContext *s, uint8_t encoded_exp[NB_BLOCKS][AC3_MAX_CHANNELS][N/2], uint8_t exp_strategy[NB_BLOCKS][AC3_MAX_CHANNELS], int16_t psd[NB_BLOCKS][AC3_MAX_CHANNELS][N/2], int16_t mask[NB_BLOCKS][AC3_MAX_CHANNELS][50]) argument
447 bit_alloc(AC3EncodeContext *s, int16_t mask[NB_BLOCKS][AC3_MAX_CHANNELS][50], int16_t psd[NB_BLOCKS][AC3_MAX_CHANNELS][N/2], uint8_t bap[NB_BLOCKS][AC3_MAX_CHANNELS][N/2], int frame_bits, int coarse_snr_offset, int fine_snr_offset) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dclisecdesc.c34 SEC_DESC *psd = NULL; local
67 if (!sec_io_desc("sd data", &psd, &pd, 1)) {
79 return psd;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_server/
H A Dsrv_srvsvc_nt.c178 SEC_DESC *psd = NULL; local
187 psd = make_sec_desc(ctx, SEC_DESC_REVISION, SEC_DESC_SELF_RELATIVE, NULL, NULL, NULL, psa, psize);
190 if (!psd) {
195 return psd;
206 SEC_DESC *psd = NULL; local
215 !sec_io_desc("get_share_security", &psd, &ps, 1)) {
222 if (psd)
223 *psize = sec_desc_size(psd);
226 return psd;
233 static BOOL set_share_security(TALLOC_CTX *ctx, const char *share_name, SEC_DESC *psd) argument
294 map_generic_share_sd_bits(SEC_DESC *psd) argument
325 SEC_DESC *psd = NULL; local
1462 SEC_DESC *psd = NULL; local
1642 SEC_DESC *psd = NULL; local
1899 SEC_DESC *psd = NULL; local
[all...]
H A Dsrv_lsa_nt.c400 SEC_DESC *psd = NULL; local
411 lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
413 if(!se_access_check(psd, p->pipe_user.nt_user_token, des_access, &acc_granted, &status)) {
449 SEC_DESC *psd = NULL; local
460 lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
462 if(!se_access_check(psd, p->pipe_user.nt_user_token, des_access, &acc_granted, &status)) {
1219 SEC_DESC *psd = NULL; local
1238 status=lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
1243 if((r_u->buf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
1249 status=lsa_get_generic_sd(p->mem_ctx, &psd,
[all...]
H A Dsrv_samr_nt.c79 static NTSTATUS make_samr_object_sd( TALLOC_CTX *ctx, SEC_DESC **psd, size_t *sd_size, argument
129 if ((*psd = make_sec_desc(ctx, SEC_DESC_REVISION, SEC_DESC_SELF_RELATIVE, NULL, NULL, NULL, psa, sd_size)) == NULL)
140 static NTSTATUS access_check_samr_object( SEC_DESC *psd, NT_USER_TOKEN *token, argument
164 if ( se_access_check(psd, token, des_access, acc_granted, &status) )
487 SEC_DESC *psd = NULL; local
509 make_samr_object_sd( p->mem_ctx, &psd, &sd_size, &dom_generic_mapping, NULL, 0 );
515 status = access_check_samr_object( psd, p->pipe_user.nt_user_token,
605 SEC_DESC * psd = NULL; local
625 r_u->status = make_samr_object_sd(p->mem_ctx, &psd, &sd_size, &sam_generic_mapping, NULL, 0);
631 r_u->status = make_samr_object_sd(p->mem_ctx, &psd,
1597 SEC_DESC *psd = NULL; local
2235 SEC_DESC *psd; local
2453 SEC_DESC *psd = NULL; local
2504 SEC_DESC *psd = NULL; local
2668 SEC_DESC *psd = NULL; local
4358 SEC_DESC *psd = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/modules/
H A Dvfs_afsacl.c697 struct security_descriptor_info *psd,
708 (psd->dacl == NULL))
714 dacl = psd->dacl;
873 struct security_descriptor_info *psd)
919 if (!nt_to_afs_acl(fsp->fsp_name, security_info_sent, psd,
934 if (!nt_to_afs_acl(fsp->fsp_name, security_info_sent, psd,
985 SEC_DESC *psd)
987 return afs_set_nt_acl(handle, fsp, security_info_sent, psd);
993 SEC_DESC *psd)
995 return afs_set_nt_acl(handle, fsp, security_info_sent, psd);
695 nt_to_afs_acl(const char *filename, uint32 security_info_sent, struct security_descriptor_info *psd, uint32 (*nt_to_afs_rights)(const char *filename, const SEC_ACE *ace), struct afs_acl *afs_acl) argument
871 afs_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32 security_info_sent, struct security_descriptor_info *psd) argument
982 afsacl_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, int fd, uint32 security_info_sent, SEC_DESC *psd) argument
990 afsacl_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp, const char *name, uint32 security_info_sent, SEC_DESC *psd) argument
[all...]
H A Dvfs_full_audit.c170 SEC_DESC *psd);
173 SEC_DESC *psd);
1283 SEC_DESC *psd)
1288 psd);
1297 SEC_DESC *psd)
1302 psd);
1281 smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, int fd, uint32 security_info_sent, SEC_DESC *psd) argument
1295 smb_full_audit_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp, const char *name, uint32 security_info_sent, SEC_DESC *psd) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/
H A Dprocessor_perflib.c490 union acpi_object *psd = NULL; local
498 psd = buffer.pointer;
499 if (!psd || (psd->type != ACPI_TYPE_PACKAGE)) {
505 if (psd->package.count != 1) {
516 status = acpi_extract_package(&(psd->package.elements[0]),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dposix_acls.c886 static BOOL unpack_nt_owners(int snum, SMB_STRUCT_STAT *psbuf, uid_t *puser, gid_t *pgrp, uint32 security_info_sent, SEC_DESC *psd) argument
914 sid_copy(&owner_sid, psd->owner_sid);
936 sid_copy(&grp_sid, psd->grp_sid);
1901 uint32 security_info_sent, SEC_DESC *psd)
1918 if(!(security_info_sent & DACL_SECURITY_INFORMATION) || !psd->dacl)
1926 &file_ace, &dir_ace, psd->dacl))
2652 SEC_DESC *psd = NULL; local
2868 psd = make_standard_sec_desc( main_loop_talloc_get(),
2874 if(!psd) {
2889 psd
1896 unpack_canon_ace(files_struct *fsp, SMB_STRUCT_STAT *pst, DOM_SID *pfile_owner_sid, DOM_SID *pfile_grp_sid, canon_ace **ppfile_ace, canon_ace **ppdir_ace, uint32 security_info_sent, SEC_DESC *psd) argument
2964 set_nt_acl(files_struct *fsp, uint32 security_info_sent, SEC_DESC *psd) argument
[all...]
H A Ddir.c797 SEC_DESC *psd = NULL; local
829 (OWNER_SECURITY_INFORMATION|GROUP_SECURITY_INFORMATION|DACL_SECURITY_INFORMATION), &psd);
836 return se_access_check(psd, current_user.nt_user_token, FILE_READ_DATA,
850 SEC_DESC *psd = NULL; local
884 (OWNER_SECURITY_INFORMATION|GROUP_SECURITY_INFORMATION|DACL_SECURITY_INFORMATION), &psd);
891 return se_access_check(psd, current_user.nt_user_token, FILE_WRITE_DATA,
H A Dnttrans.c1115 SEC_DESC *psd = NULL; local
1145 if(!sec_io_desc( "sd data", &psd, &pd, 1)) {
1154 if (psd->off_owner_sid==0)
1156 if (psd->off_grp_sid==0)
1158 if (psd->off_sacl==0)
1160 if (psd->off_dacl==0)
1163 ret = SMB_VFS_FSET_NT_ACL( fsp, fsp->fd, security_info_sent, psd);
1950 SEC_DESC *psd = NULL; local
1981 sd_size = get_null_nt_acl(mem_ctx, &psd);
1983 sd_size = SMB_VFS_FGET_NT_ACL(fsp, fsp->fd, security_info_wanted, &psd);
[all...]
H A Dvfs-wrap.c892 BOOL vfswrap_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, int fd, uint32 security_info_sent, SEC_DESC *psd) argument
897 result = set_nt_acl(fsp, security_info_sent, psd);
902 BOOL vfswrap_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp, const char *name, uint32 security_info_sent, SEC_DESC *psd) argument
907 result = set_nt_acl(fsp, security_info_sent, psd);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Dvfs_macros.h81 #define SMB_VFS_FSET_NT_ACL(fsp, fd, security_info_sent, psd) ((fsp)->conn->vfs.ops.fset_nt_acl((fsp)->conn->vfs.handles.fset_nt_acl, (fsp), (fd), (security_info_sent), (psd)))
82 #define SMB_VFS_SET_NT_ACL(fsp, name, security_info_sent, psd) ((fsp)->conn->vfs.ops.set_nt_acl((fsp)->conn->vfs.handles.set_nt_acl, (fsp), (name), (security_info_sent), (psd)))
182 #define SMB_VFS_OPAQUE_FSET_NT_ACL(fsp, fd, security_info_sent, psd) ((fsp)->conn->vfs_opaque.ops.fset_nt_acl((fsp)->conn->vfs_opaque.handles.fset_nt_acl, (fsp), (fd), (security_info_sent), (psd)))
183 #define SMB_VFS_OPAQUE_SET_NT_ACL(fsp, name, security_info_sent, psd) ((fsp)->conn->vfs_opaque.ops.set_nt_acl((fsp)->conn->vfs_opaque.handles.set_nt_acl, (fsp), (name), (security_info_sent), (psd)))
284 #define SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, fd, security_info_sent, psd) ((handle)->vfs_next.ops.fset_nt_acl((handle)->vfs_next.handles.fset_nt_acl, (fsp), (fd), (security_info_sent), (psd)))
[all...]
H A Dvfs.h266 BOOL (*fset_nt_acl)(struct vfs_handle_struct *handle, struct files_struct *fsp, int fd, uint32 security_info_sent, struct security_descriptor_info *psd);
267 BOOL (*set_nt_acl)(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, uint32 security_info_sent, struct security_descriptor_info *psd);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dldap.c1567 SEC_DESC *psd = 0; local
1579 if (!sec_io_desc("sd", &psd, &ps, 1)) {
1584 if (psd) ads_disp_sd(psd);
1850 SEC_DESC *psd = NULL; local
1892 if (!ads_pull_sd(ads, ctx, msg, attrs[0], &psd)) {
1897 status = sec_desc_add_sid(ctx, &psd, &sid, SEC_RIGHTS_FULL_CTRL, &sd_size);
1908 if (!sec_io_desc("sd_wire", &psd, &ps_wire, 1)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/VFS/
H A Dskel_transparent.c258 static BOOL skel_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, int fd, uint32 security_info_sent, struct security_descriptor_info *psd) argument
260 return SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, fd, security_info_sent, psd);
263 static BOOL skel_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp, const char *name, uint32 security_info_sent, struct security_descriptor_info *psd) argument
265 return SMB_VFS_NEXT_SET_NT_ACL(handle, fsp, name, security_info_sent, psd);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/
H A Dpktcdvd.c2414 struct packet_stacked_data *psd = bio->bi_private; local
2415 struct pktcdvd_device *pd = psd->pd;
2421 bio_endio(psd->bio, psd->bio->bi_size, err);
2422 mempool_free(psd, psd_pool);
2447 struct packet_stacked_data *psd = mempool_alloc(psd_pool, GFP_NOIO); local
2449 psd->pd = pd;
2450 psd->bio = bio;
2452 cloned_bio->bi_private = psd;

Completed in 204 milliseconds

123