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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/passdb/
H A Dlookup_sid.c245 static BOOL fetch_gid_from_cache(gid_t *pgid, const DOM_SID *psid) argument
252 *pgid = pc->gid;
254 (unsigned int)*pgid, sid_to_string(sid, psid)));
442 NTSTATUS sid_to_gid(const DOM_SID *psid, gid_t *pgid) argument
447 if (fetch_gid_from_cache(pgid, psid))
455 if ( local_sid_to_gid(pgid, psid, &name_type) )
481 if ( !winbind_sid_to_gid(pgid, psid) ) {
489 (unsigned int)*pgid ));
491 store_gid_sid_cache(psid, *pgid);
H A Dpassdb.c1287 BOOL local_sid_to_gid(gid_t *pgid, const DOM_SID *psid, enum SID_NAME_USE *name_type) argument
1327 *pgid = pdb_group_rid_to_gid(rid);
1328 DEBUG(10,("local_sid_to_gid: mapping: %s -> %u\n", sid_string_static(psid), (unsigned int)(*pgid)));
1336 *pgid = group.gid;
1340 (unsigned int)*pgid));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/cio/
H A Dcss.h47 struct pgid { struct
108 struct pgid pgid[8]; /* path group IDs per chpid*/ member in struct:ccw_device_private
159 struct pgid global_pgid;
H A Ddevice_pgid.c62 ccw->count = sizeof (struct pgid);
71 ccw->cda = (__u32) __pa (&cdev->private->pgid[i]);
108 memset (&cdev->private->pgid, 0, sizeof (cdev->private->pgid));
165 if (cdev->private->pgid[i].inf.ps.state2 == SNID_STATE2_RESVD_ELSE) {
240 cdev->private->pgid[0].inf.fc = func;
243 cdev->private->pgid[0].inf.fc |= SPID_FUNC_MULTI_PATH;
250 cdev->private->pgid[0].inf.fc |= SPID_FUNC_SINGLE_PATH;
253 ccw->cda = (__u32) __pa (&cdev->private->pgid[0]);
254 ccw->count = sizeof (struct pgid);
[all...]
H A Ddevice_fsm.c405 static int cmp_pgid(struct pgid *p1, struct pgid *p2)
413 return memcmp(c1 + 1, c2 + 1, sizeof(struct pgid) - 1);
423 if (cdev->private->pgid[i].inf.ps.state1 == SNID_STATE1_RESET)
426 if (cdev->private->pgid[last].inf.ps.state1 ==
432 if (cmp_pgid(&cdev->private->pgid[i],
433 &cdev->private->pgid[last]) == 0)
438 CIO_MSG_EVENT(0, "SNID - pgid mismatch for device "
445 if (cdev->private->pgid[last].inf.ps.state1 ==
447 /* No previous pgid foun
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/autofs/
H A Dinode.c144 pid_t pgid; local
176 &root_inode->i_gid, &pgid, &minproto,
189 DPRINTK(("autofs: pipe fd = %d, pgrp = %u\n", pipefd, pgid));
190 sbi->oz_pgrp = find_get_pid(pgid);
193 printk("autofs: could not find process group %d\n", pgid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/nsswitch/
H A Dwb_client.c173 BOOL winbind_sid_to_gid(gid_t *pgid, const DOM_SID *sid) argument
180 if (!pgid)
198 *pgid = response.data.gid;
662 BOOL winbind_sid_to_gid_query(gid_t *pgid, const DOM_SID *sid)
669 if (!pgid)
689 *pgid = response.data.gid;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dprocps.c197 "%u %u %d %*s " /* pgid, sid, tty, tpgid */
210 &sp->pgid, &sp->sid, &tty,
227 sp->pgid = fast_strtoul_10(&cp);
290 // pid comm S ppid pgid sid tty_nr tty_pgrp flg
298 pgid,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dsys.c1434 asmlinkage long sys_setpgid(pid_t pid, pid_t pgid) argument
1442 if (!pgid)
1443 pgid = pid;
1444 if (pgid < 0)
1478 if (pgid != pid) {
1480 find_task_by_pid_type(PIDTYPE_PGID, pgid);
1486 err = security_task_setpgid(p, pgid);
1490 if (process_group(p) != pgid) {
1492 p->signal->pgrp = pgid;
1493 attach_pid(p, PIDTYPE_PGID, find_pid(pgid));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/proc/
H A Darray.c390 pid_t ppid = 0, pgid = -1, sid = -1; local
457 pgid = process_group(task);
494 pgid,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dcoda.h330 u_int16_t pgid; /* Common to all */ member in struct:coda_in_hdr
335 pid_t pgid; member in struct:coda_in_hdr
H A Dsecurity.h559 * process @p to @pgid.
561 * @pgid contains the new pgid.
1264 int (*task_setpgid) (struct task_struct * p, pid_t pgid);
1890 static inline int security_task_setpgid (struct task_struct *p, pid_t pgid) argument
1892 return security_ops->task_setpgid (p, pgid);
2563 static inline int security_task_setpgid (struct task_struct *p, pid_t pgid) argument
H A Dsyscalls.h103 asmlinkage long sys_setpgid(pid_t pid, pid_t pgid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dposix_acls.c2138 gid_t *pgid = (gid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry); local
2139 if (pgid == NULL) {
2143 gid_to_sid( &sid, *pgid);
2144 unix_ug.gid = *pgid;
2146 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)pgid,tagtype);
3845 gid_t *pgid = (gid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry); local
3846 if (pgid == NULL) {
3850 if (current_user.groups[i] == *pgid) {
H A Dtrans2.c2361 gid_t *pgid= (gid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry); local
2362 if (!pgid) {
2365 own_grp = (unsigned int)*pgid;
2366 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)pgid,tagtype);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/procps/
H A Dps.c48 sprintf(buf, "%*u", size, ps->pgid);
119 { 5 , "pgid" ,"PGID" ,func_pgid ,PSSCAN_PGID },
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/kernel/
H A Dsys_sunos.c832 asmlinkage int sunos_setpgrp(pid_t pid, pid_t pgid) argument
838 !pgid) {
842 ret = sys_setpgid(pid, pgid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dsys_sunos32.c799 asmlinkage int sunos_setpgrp(pid_t pid, pid_t pgid) argument
805 !pgid) {
809 ret = sys_setpgid(pid, pgid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dsys_ppc32.c621 /* Note: it is necessary to treat pid and pgid as unsigned ints,
626 asmlinkage long compat_sys_setpgid(u32 pid, u32 pgid) argument
628 return sys_setpgid((int)pid, (int)pgid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/solaris/
H A Dmisc.c411 asmlinkage int solaris_procids(int cmd, s32 pid, s32 pgid) argument
449 return sys_setpgid(pid,pgid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/coda/
H A Dupcall.c56 inp->ih.pgid = process_group(current);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/include/
H A Dlibbb.h898 unsigned pgid; member in struct:__anon11294
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/
H A Ddummy.c493 static int dummy_task_setpgid (struct task_struct *p, pid_t pgid) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/shell/
H A Dash.c3096 #define SHOW_PGID 0x01 /* only show pgid - for jobs -p */
3538 pid_t pgid; local
3544 pgid = jp->ps->pid;
3546 xtcsetpgrp(ttyfd, pgid);
3547 killpg(pgid, SIGCONT);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/
H A Dhooks.c2787 static int selinux_task_setpgid(struct task_struct *p, pid_t pgid) argument

Completed in 328 milliseconds