Searched refs:what (Results 1 - 25 of 261) sorted by last modified time

1234567891011

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/contrib/shell_utils/
H A Dasip-status.pl162 print "** Request ID didn't match what we sent!\n" if ($request_id != 0xdead);
306 my ($what, $code) = @_;
308 if ($what eq "flags")
314 if ($what eq "command")
324 return "[$what/$code] unknown";
331 # assume I know what I'm doing. (hah, what a foolish function..)
H A Dasip-status.pl.in162 print "** Request ID didn't match what we sent!\n" if ($request_id != 0xdead);
306 my ($what, $code) = @_;
308 if ($what eq "flags")
314 if ($what eq "command")
324 return "[$what/$code] unknown";
331 # assume I know what I'm doing. (hah, what a foolish function..)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dfork.c162 static int setforkmode(struct adouble *adp, int eid, int ofrefnum, off_t what) argument
164 return ad_lock(adp, eid, ADLOCK_RD | ADLOCK_FILELOCK, what, 1, ofrefnum);
169 int getforkmode(struct adouble *adp, int eid, off_t what) argument
171 return ad_testlock(adp, eid, what);
704 /* FIXME what do we do if file size > 2 GB and
1290 /* find out what we have already and write it out. */
H A Dquota.c269 static int get_linux_quota(int what, char *path, uid_t euser_id, struct dqblk *dp) argument
274 r=get_linux_xfs_quota(what, path, euser_id, dp);
276 r=get_linux_fs_quota(what, path, euser_id, dp);
285 static int get_linux_xfs_quota(int what, char *path, uid_t euser_id, struct dqblk *dqb) argument
293 if ((ret = quotactl(QCMD(Q_XGETQUOTA,(what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t)&D)))
312 static int get_linux_fs_quota(int what, char *path, uid_t euser_id, struct dqblk *dqb) argument
323 ret = quotactl(QCMD(Q_V3_GETQUOTA, (what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t) &dqb3);
341 ret = quotactl(QCMD(Q_V2_GETQUOTA, (what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t) &dqb2);
359 ret = quotactl(QCMD(Q_V1_GETQUOTA, (what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t) &dqb1);
H A Duam.c352 int uam_afpserver_option(void *private, const int what, void *option, argument
362 switch (what) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Duam.c186 int uam_afpserver_option(void *private _U_, const int what _U_, void *option _U_,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/
H A DAndroid.mk13 # command with flags that match what Android itself uses. This will mean
24 # executable that's already buildable and watch what flags Android uses to link
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Devhiperfifo.c262 static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp) argument
264 DPRINT("%s e %p s %i what %i cbp %p sockp %p\n",
265 __PRETTY_FUNCTION__, e, s, what, cbp, sockp);
272 "socket callback: s=%d e=%p what=%s ", s, e, whatstr[what]);
273 if ( what == CURL_POLL_REMOVE )
281 fprintf(MSG_OUT, "Adding data: %s\n", whatstr[what]);
282 addsock(s, e, what, g);
287 whatstr[fdp->action], whatstr[what]);
288 setsock(fdp, s, e, what,
[all...]
H A Dghiper.c251 static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp) argument
257 MSG_OUT("socket callback: s=%d e=%p what=%s ", s, e, whatstr[what]);
258 if (what == CURL_POLL_REMOVE) {
264 what&CURL_POLL_IN?"READ":"",
265 what&CURL_POLL_OUT?"WRITE":"" );
266 addsock(s, e, what, g);
270 "Changing action from %d to %d\n", fdp->action, what);
271 setsock(fdp, s, e, what, g);
H A Dhiperfifo.c253 static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp) argument
260 "socket callback: s=%d e=%p what=%s ", s, e, whatstr[what]);
261 if (what == CURL_POLL_REMOVE) {
267 fprintf(MSG_OUT, "Adding data: %s\n", whatstr[what]);
268 addsock(s, e, what, g);
273 whatstr[fdp->action], whatstr[what]);
274 setsock(fdp, s, e, what, g);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/include/curl/
H A Dmulti.h83 CURLMSG msg; /* what this message means */
160 * in what state those handles will be if this function is called
232 int what, /* see above */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Daxtls.c408 int what = Curl_socket_ready(conn->sock[sockindex], local
410 if(what > 0) {
421 else if(0 == what) {
H A Dcookie.c210 char *what; local
212 what = malloc(MAX_COOKIE_LINE);
213 if(!what) {
225 /* we have a <what>=<this> pair or a stand-alone word here */
226 name[0]=what[0]=0; /* init the buffers */
229 name, what)) {
236 size_t len=strlen(what);
246 /* Strip off trailing whitespace from the 'what' */
247 while(len && ISBLANK(what[len-1])) {
248 what[le
[all...]
H A Dcyassl.c450 int what; local
494 what = Curl_socket_ready(readfd, writefd, nonblocking?0:timeout_ms);
495 if(what < 0) {
500 else if(0 == what) {
H A Dgtls.c247 int what; local
268 what = Curl_socket_ready(readfd, writefd,
271 if(what < 0) {
276 else if(0 == what) {
930 int what = Curl_socket_ready(conn->sock[sockindex], local
932 if(what > 0) {
953 else if(0 == what) {
H A Dparsedate.c203 const char * const *what; local
206 what = &weekday[0];
208 what = &Curl_wkday[0];
210 if(Curl_raw_equal(check, what[0])) {
214 what++;
222 const char * const *what; local
225 what = &Curl_month[0];
227 if(Curl_raw_equal(check, what[0])) {
231 what++;
242 const struct tzinfo *what; local
[all...]
H A Dqssl.c332 int what; local
347 what = Curl_socket_ready(conn->sock[sockindex],
351 if(what < 0) {
358 if(!what) { /* timeout */
376 what = Curl_socket_ready(conn->sock[sockindex], CURL_SOCKET_BAD, 0);
H A Dssluse.c889 int what = Curl_socket_ready(conn->sock[sockindex], local
891 if(what > 0) {
926 else if(0 == what) {
1037 * accept multiple "*" in pattern (similar to what some other browsers do).
2435 int what; local
2479 what = Curl_socket_ready(readfd, writefd, nonblocking?0:timeout_ms);
2480 if(what < 0) {
2485 else if(0 == what) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/libtest/
H A Dlib506.c47 const char *what; local
55 what = "share";
58 what = "dns";
61 what = "cookie";
67 printf("lock: %-6s [%s]: %d\n", what, user->text, user->counter);
74 const char *what; local
79 what = "share";
82 what = "dns";
85 what = "cookie";
91 printf("unlock: %-6s [%s]: %d\n", what, use
[all...]
H A Dlib582.c67 static void addFd(struct Sockets* sockets, curl_socket_t fd, const char *what) argument
73 fprintf(stderr, "Add socket fd %d for %s\n", (int) fd, what);
H A Dtest1013.pl10 my $what=$ARGV[2];
14 open(CURL, "$ARGV[1]") || die "Can't get curl $what list\n";
17 $curl_protocols = lc($_) if ( /$what:/i );
30 open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what list\n";
45 print "Mismatch in $what lists:\n";
H A Dtest1022.pl9 my $what=$ARGV[2];
22 open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config --$what list\n";
26 if ( $what eq "version" ) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/
H A Druntests.pl143 my $CURL="../src/curl".exe_ext(); # what curl executable to run on the tests
144 my $VCURL=$CURL; # what curl binary to use to verify the servers with
152 my $SERVERIN="$LOGDIR/server.input"; # what curl sent the server
153 my $SERVER2IN="$LOGDIR/server2.input"; # what curl sent the second server
2621 my @what;
2650 @what = getpart("client", "features");
2653 for(@what) {
3387 # what to cut off from the live protocol sent by curl
3408 # what parts to cut off from the protocol
3447 # what part
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tmp.bak/include/curl/
H A Dmulti.h83 CURLMSG msg; /* what this message means */
160 * in what state those handles will be if this function is called
232 int what, /* see above */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/packaging/Mandrake/
H A Dsamba2.spec1287 # (sb) leave a README.mdk.conf to explain what has been done
1297 smb.conf. A log of what took place should be in:

Completed in 139 milliseconds

1234567891011