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

1234567891011>>

/macosx-10.10.1/emacs-93/emacs/mac/inc/
H A Dgrp.h27 struct group { struct
28 char *gr_name; /* group name */
31 struct group *getgrgid(gid_t);
/macosx-10.10.1/emacs-93/emacs/nt/inc/
H A Dgrp.h27 struct group { struct
28 char *gr_name; /* group name */
31 struct group *getgrgid(gid_t);
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dgrp.h50 #define _PATH_GROUP "/etc/group"
53 struct group { struct
54 char *gr_name; /* [XBD] group name */
55 char *gr_passwd; /* [???] group password */
56 gid_t gr_gid; /* [XBD] group id */
57 char **gr_mem; /* [XBD] group members */
64 struct group *getgrgid(gid_t);
65 struct group *getgrnam(const char *);
67 int getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
[all...]
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dopen_dir.h26 extern int open_dir_authorize_id (vchar_t *id, vchar_t *group);
/macosx-10.10.1/ruby-106/ruby/lib/webrick/httpauth/
H A Dhtgroup.rb16 # Htgroup accesses apache-compatible group files. Htgroup can be used to
17 # provide group-based authentication for users. Currently Htgroup is not
32 # Open a group database at +path+
37 @group = Hash.new
47 @group.clear
51 group, members = line.split(/:\s*/)
52 @group[group] = members.split(/\s+/)
60 # Flush the group database. If +output+ is given the database will be
67 @group
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/ec/
H A Dec_lib.c123 void EC_GROUP_free(EC_GROUP *group) argument
125 if (!group) return;
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
130 EC_EX_DATA_free_all_data(&group->extra_data);
132 if (group->generator != NULL)
133 EC_POINT_free(group->generator);
134 BN_free(&group->order);
135 BN_free(&group
144 EC_GROUP_clear_free(EC_GROUP *group) argument
272 EC_GROUP_method_of(const EC_GROUP *group) argument
284 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
313 EC_GROUP_get0_generator(const EC_GROUP *group) argument
319 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
328 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
337 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
343 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
349 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
355 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
361 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
368 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
374 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
395 EC_GROUP_get0_seed(const EC_GROUP *group) argument
401 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
407 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
418 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
429 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
440 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
451 EC_GROUP_get_degree(const EC_GROUP *group) argument
462 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
693 EC_POINT_new(const EC_GROUP *group) argument
768 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
793 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
809 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
826 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
843 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
877 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
894 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
911 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
928 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
945 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
962 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
979 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
995 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
1011 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
1027 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1043 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1059 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1075 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1091 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1118 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
1128 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
1142 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1154 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Dec2_mult.c82 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, BN_CTX *ctx) argument
92 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
93 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
94 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
95 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
96 if (!group
113 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
150 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
218 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
318 ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
381 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
386 ec_GF2m_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_mont.c115 int ec_GFp_mont_group_init(EC_GROUP *group) argument
119 ok = ec_GFp_simple_group_init(group);
120 group->field_data1 = NULL;
121 group->field_data2 = NULL;
126 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
128 if (group->field_data1 != NULL)
130 BN_MONT_CTX_free(group->field_data1);
131 group->field_data1 = NULL;
133 if (group->field_data2 != NULL)
135 BN_free(group
142 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
197 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
257 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
269 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
281 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
293 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
305 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Dec2_smpt.c69 int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
99 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err;
102 if (!BN_GF2m_mod_sqrt_arr(y, &group->b, group->poly, ctx)) goto err;
106 if (!group->meth->field_sqr(group, tmp, x, ctx)) goto err;
107 if (!group->meth->field_div(group, tmp, &group->b, tmp, ctx)) goto err;
108 if (!BN_GF2m_add(tmp, &group
[all...]
H A Decp_smpl.c130 int ec_GFp_simple_group_init(EC_GROUP *group) argument
132 BN_init(&group->field);
133 BN_init(&group->a);
134 BN_init(&group->b);
135 group->a_is_minus3 = 0;
140 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
142 BN_free(&group->field);
143 BN_free(&group->a);
144 BN_free(&group->b);
148 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
168 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
223 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
274 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
280 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
386 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
394 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
454 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
507 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
521 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
637 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
766 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
892 ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
1002 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1166 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
1283 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1293 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1299 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1390 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1501 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1540 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1710 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1716 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
H A Dec_check.c59 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx) argument
79 if (!EC_GROUP_check_discriminant(group, ctx))
86 if (group->generator == NULL)
91 if (!EC_POINT_is_on_curve(group, group->generator, ctx))
98 if ((point = EC_POINT_new(group)) == NULL) goto err;
99 if (!EC_GROUP_get_order(group, order, ctx)) goto err;
106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err;
107 if (!EC_POINT_is_at_infinity(group, point))
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dchown.c39 chown(const char *path, uid_t owner, gid_t group) argument
H A Dfchown.c39 fchown(int fd, uid_t owner, gid_t group) argument
/macosx-10.10.1/sudo-73/src/
H A Dnonunix.h41 sudo_nonunix_groupcheck( const char* group, const char* user, const struct passwd* pwd );
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitWebViewGroup.cpp40 * A WebKitWebViewGroup represents a group of #WebKitWebView<!-- -->s that
46 * WebKitWebViewGroups are identified by a unique name given when the group is
49 * #WebKitWebView<!-- -->s of the group. You can get the settings with
53 * is emitted on the group.
85 WebKitWebViewGroup* group = WEBKIT_WEB_VIEW_GROUP(object); local
89 webkit_web_view_group_set_settings(group, WEBKIT_SETTINGS(g_value_get_object(value)));
98 WebKitWebViewGroup* group = WEBKIT_WEB_VIEW_GROUP(object); local
102 g_value_set_object(value, webkit_web_view_group_get_settings(group));
127 * The #WebKitSettings of the web view group.
135 _("The settings of the web view group"),
140 webkitWebViewGroupAttachSettingsToPageGroup(WebKitWebViewGroup* group) argument
147 WebKitWebViewGroup* group = WEBKIT_WEB_VIEW_GROUP(g_object_new(WEBKIT_TYPE_WEB_VIEW_GROUP, NULL)); local
153 webkitWebViewGroupGetPageGroup(WebKitWebViewGroup* group) argument
173 WebKitWebViewGroup* group = WEBKIT_WEB_VIEW_GROUP(g_object_new(WEBKIT_TYPE_WEB_VIEW_GROUP, NULL)); local
187 webkit_web_view_group_get_name(WebKitWebViewGroup* group) argument
206 webkit_web_view_group_get_settings(WebKitWebViewGroup* group) argument
227 webkit_web_view_group_set_settings(WebKitWebViewGroup* group, WebKitSettings* settings) argument
[all...]
/macosx-10.10.1/files-662.1.1/System/Library/DirectoryServices/DefaultLocalDB/Default/
H A Dgroups.py12 def printgroup(group):
13 name = deref(group["name"])
14 gid = deref(group["gid"])
16 if "users" in group:
17 users = ",".join(group["users"])
42 for group in groups:
43 printgroup(group)
/macosx-10.10.1/BerkeleyDB-21/db/dist/
H A Ds_javadoc_merge11 return '%s%s' % (m.group('field_name'), paramre.sub('\g<param_type>\g<comma>', m.group('params') or ''))
16 javadoc[m.group('class_name')] = m.group('javadoc')
18 javadoc[fieldsig(m)] = m.group('javadoc')
23 #print "Looking up", m.group('class_name')
24 return '%s%s%s%s %s' % (javadoc.get(m.group('class_name'), '/** TODO */\n'), m.group('mods'), (m.group('class_type') or ''), m.group('class_nam
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-int.el37 (autoload 'gnus-agent-regenerate-group "gnus-agent")
42 :group 'gnus-start
52 :group 'gnus-start
137 (defun gnus-check-group (group)
139 (let ((method (gnus-find-method-for-group group)))
323 If GNUS-COMMAND-METHOD is a string, it is interpreted as a group
324 name. The method this group uses will be queried."
327 (gnus-find-method-for-group gnu
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dthread_call.c101 static __inline__ boolean_t _pending_call_enqueue(thread_call_t call, thread_call_group_t group);
102 static __inline__ boolean_t _delayed_call_enqueue(thread_call_t call, thread_call_group_t group, uint64_t deadline);
103 static __inline__ boolean_t _call_dequeue(thread_call_t call, thread_call_group_t group);
104 static __inline__ void thread_call_wake(thread_call_group_t group);
105 static __inline__ void _set_delayed_call_timer(thread_call_t call, thread_call_group_t group);
109 static void thread_call_thread(thread_call_group_t group, wait_result_t wres);
112 static void thread_call_group_setup(thread_call_group_t group, thread_call_priority_t pri, uint32_t target_thread_count, boolean_t parallel);
114 static void thread_call_start_deallocate_timer(thread_call_group_t group);
165 group_isparallel(thread_call_group_t group) argument
167 return ((group
171 thread_call_group_should_add_thread(thread_call_group_t group) argument
244 thread_call_group_setup( thread_call_group_t group, thread_call_priority_t pri, uint32_t target_thread_count, boolean_t parallel) argument
273 thread_call_thread_create( thread_call_group_t group) argument
429 _pending_call_enqueue( thread_call_t call, thread_call_group_t group) argument
461 _delayed_call_enqueue( thread_call_t call, thread_call_group_t group, uint64_t deadline) argument
488 _call_dequeue( thread_call_t call, thread_call_group_t group) argument
514 _set_delayed_call_timer( thread_call_t call, thread_call_group_t group) argument
548 thread_call_group_t group = &thread_call_groups[THREAD_CALL_PRIORITY_HIGH]; local
593 thread_call_group_t group = &thread_call_groups[THREAD_CALL_PRIORITY_HIGH]; local
784 thread_call_group_t group; local
810 thread_call_group_t group; local
895 thread_call_group_t group; local
966 thread_call_group_t group; local
1011 thread_call_group_t group; local
1048 thread_call_wake( thread_call_group_t group) argument
1083 thread_call_group_t group; local
1151 thread_call_thread( thread_call_group_t group, wait_result_t wres) argument
1304 thread_call_group_t group; local
1361 thread_call_start_deallocate_timer( thread_call_group_t group) argument
1385 thread_call_group_t group = p0; local
1419 thread_call_group_t group = p0; local
1475 thread_call_group_t group = (thread_call_group_t)p0; local
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dstrip-2.d2 #source: group.s
5 #name: strip with section group 2
14 COMDAT group section \[[ 0-9]+\] `foo_group' \[foo_group\] contains 2 sections:
/macosx-10.10.1/ruby-106/ruby/test/net/http/
H A Dtest_httpresponses.rb9 group = Net::HTTPInformation
11 group = Net::HTTPSuccess
13 group = Net::HTTPRedirection
15 group = Net::HTTPClientError
17 group = Net::HTTPServerError
21 assert(klass < group, "#{klass.name} (#{code}) must inherit from #{group.name}")
/macosx-10.10.1/net_snmp-143/
H A Dsnmpd.conf65 # Second, map the security names into group names:
68 group MyRWGroup v1 local
69 group MyRWGroup v2c local
70 group MyRWGroup usm local
71 group MyROGroup v1 mynetwork
72 group MyROGroup v2c mynetwork
73 group MyROGroup usm mynetwork
/macosx-10.10.1/network_cmds-457/mnc.tproj/
H A Dmnc_multicast.c67 int mnc_join_ipv4_ssm(int socket, struct addrinfo * group, argument
89 ((struct sockaddr_in *)group->ai_addr)->sin_addr.s_addr;
99 mnc_warning("Could not join the multicast group: %s\n",
109 int mnc_join_ipv4_ssm(int socket, struct addrinfo * group, argument
118 int mnc_join_ipv6_ssm(int socket, struct addrinfo * group, argument
130 int mnc_join_ip_asm(int socket, struct addrinfo * group, char * iface) argument
135 if (group->ai_family == AF_INET6)
157 memcpy(&multicast_request.gr_group, group->ai_addr, group->ai_addrlen);
163 mnc_warning("Could not join the multicast group
175 mnc_join_ipv4_asm(int socket, struct addrinfo * group, char * iface) argument
212 mnc_join_ipv6_asm(int socket, struct addrinfo * group, char * iface) argument
223 mnc_join_ip_ssm(int socket, struct addrinfo * group, struct addrinfo * source, char * iface) argument
271 multicast_setup_listen(int socket, struct addrinfo * group, struct addrinfo * source, char * iface) argument
369 multicast_setup_send(int socket, struct addrinfo * group, struct addrinfo * source) argument
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DEventListenerSectionGroup.css26 .event-listener-section > .content > .group > .row.simple > .value {
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dfchownat.c48 #define AT_FUNC_POST_FILE_PARAM_DECLS , uid_t owner, gid_t group, int flag
49 #define AT_FUNC_POST_FILE_ARGS , owner, group

Completed in 333 milliseconds

1234567891011>>