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

12345

/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_core/
H A Devents.tcl43 set requested {}
56 # events requested by Tcl's IO system, and the mask of
61 if {$requestmask eq $requested} return
62 set requested $requestmask
91 variable timer allowed requested posting delay
96 # requested = Set of events requested by core.
120 # requested events into one datum, the set of events to
127 foreach event $requested {
/macosx-10.10/curl-83.1.2/curl/tests/
H A Dftp.pm161 my @requested;
168 # Make 'requested' hold the non-duplicate pids from 'pidlist'.
169 @requested = split(' ', $pidlist);
170 return if(not @requested);
171 if(scalar(@requested) > 2) {
172 @requested = sort({$a <=> $b} @requested);
174 for(my $i = scalar(@requested) - 2; $i >= 0; $i--) {
175 if($requested[$i] == $requested[
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dtask_policy.c63 * Threads and tasks have three policy fields: requested, effective, and pending.
68 * Each interface that has an input into the task policy state machine controls a field in requested.
69 * If the interface has a getter, it returns what is in the field in requested, but that is
79 * 2) Change requested field for the relevant policy
80 * 3) Run a task policy update, which recalculates effective based on requested,
81 * then takes a diff between the old and new versions of requested and calls the relevant
87 * To add a new requested policy, add the field in the requested struct, the flavor in task.h,
99 * These are a set of behaviors that can be requested for a task. They currently have specific
557 info->requested
725 struct task_requested_policy requested = local
1488 struct task_requested_policy requested = local
1615 struct task_requested_policy requested = local
1671 struct task_requested_policy requested = local
1741 struct task_requested_policy requested = local
2147 struct task_requested_policy requested = thread->requested_policy; local
2568 struct task_requested_policy requested = local
[all...]
/macosx-10.10/configd-699.1.5/Plugins/LinkConfiguration/
H A Dlinkconfig.c109 /* if current setting is as requested */
143 CFMutableDictionaryRef requested = NULL; local
152 requested = CFDictionaryCreateMutable(NULL,
156 CFDictionaryAddValue(requested, kSCPropNetEthernetMediaSubType, val);
164 CFDictionaryAddValue(requested, kSCPropNetEthernetMediaOptions, val);
167 CFRelease(requested);
171 return requested;
187 CFDictionaryRef requested; local
211 requested = __copyMediaOptions(options);
212 if (requested
330 int requested; local
[all...]
/macosx-10.10/xnu-2782.1.97/tools/lockstat/
H A Dlockstat.c70 void print_spin(int requested, lockgroup_info_t *lockgroup);
73 void print_mutex(int requested, lockgroup_info_t *lockgroup);
76 void print_rw(int requested, lockgroup_info_t *lockgroup);
308 print_spin(int requested, lockgroup_info_t *lockgroup) argument
310 lockgroup_info_t *curptr = &lockgroup[requested];
340 print_mutex(int requested, lockgroup_info_t *lockgroup) argument
342 lockgroup_info_t *curptr = &lockgroup[requested];
373 print_rw(int requested, lockgroup_info_t *lockgroup) argument
375 lockgroup_info_t *curptr = &lockgroup[requested];
/macosx-10.10/cups-408/cups/test/
H A Dget-completed-jobs.test34 ATTR keyword requested-attributes
H A Dcancel-current-job.test35 ATTR keyword requested-attributes job-id,job-state
H A Dget-jobs.test33 ATTR keyword requested-attributes
/macosx-10.10/cups-408/cups/scheduler/
H A Dcups-deviced.c129 cups_array_t *requested, /* requested-attributes values */ local
183 requested = cupsdCreateStringsArray(cupsGetOption("requested-attributes",
190 if (!requested || cupsArrayFind(requested, "all") != NULL)
197 send_class = cupsArrayFind(requested, "device-class") != NULL;
198 send_info = cupsArrayFind(requested, "device-info") != NULL;
199 send_make_and_model = cupsArrayFind(requested, "device-make-and-model") != NULL;
200 send_uri = cupsArrayFind(requested, "devic
[all...]
H A Dcups-lpd.c418 static const char * const requested[] = local
462 "requested-attributes",
463 (int)(sizeof(requested) / sizeof(requested[0])),
464 NULL, requested);
495 "requested-attributes",
496 (int)(sizeof(requested) / sizeof(requested[0])),
497 NULL, requested);
1059 * If a banner was requested an
1336 static const char * const requested[] = local
[all...]
H A Dcups-driverd.cxx1015 cups_array_t *requested, /* requested-attributes values */ local
1185 requested = cupsdCreateStringsArray(
1186 cupsGetOption("requested-attributes", num_options,
1234 if (!requested || cupsArrayFind(requested, (void *)"all") != NULL)
1248 send_name = cupsArrayFind(requested,
1250 send_make = cupsArrayFind(requested,
1252 send_make_and_model = cupsArrayFind(requested,
1254 send_model_number = cupsArrayFind(requested,
[all...]
/macosx-10.10/shell_cmds-179/lastcomm/
H A Dlastcomm.c69 static int requested(char *[], struct acct *);
135 if (!*argv || requested(argv, &ab)) {
198 requested(char *argv[], struct acct *acp) function
/macosx-10.10/cups-408/cups/berkeley/
H A Dlpc.c229 static const char *requested[] = /* Requested attributes */ local
255 "requested-attributes", sizeof(requested) / sizeof(requested[0]),
256 NULL, requested);
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dticket.c408 krb5_const_principal requested,
442 "realm"), requested->realm);
467 if (strcmp(requested->realm, returned->realm) != 0) {
471 "requested realm %s got back %s", ""),
472 requested->realm, returned->realm);
487 } else if (krb5_principal_compare(context, returned, requested) == 0) {
496 requested,
502 "as requested", ""));
519 if (krb5_principal_compare(context, requested, returned) != TRUE &&
520 (krb5_realm_compare(context, requested, returne
405 check_server_referral(krb5_context context, krb5_kdc_rep *rep, unsigned flags, krb5_const_principal requested, krb5_const_principal returned, krb5_keyblock * key) argument
538 check_client_referral(krb5_context context, krb5_kdc_rep *rep, krb5_const_principal requested, krb5_const_principal mapped, krb5_keyblock const * key) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/json/fbuffer/
H A Dfbuffer.h97 static void fbuffer_inc_capa(FBuffer *fb, unsigned long requested) argument
106 for (required = fb->capa; requested > required - fb->len; required <<= 1);
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/
H A Dbinio.c115 int requested;
123 requested = INT_MAX;
155 if (Tcl_GetInt(interp, argv[2], &requested) != TCL_OK) {
158 if (requested < 0) {
159 requested = INT_MAX;
166 requested > 0;
167 totalRead += actuallyRead, requested -= actuallyRead) {
169 toReadNow = requested;
113 int requested; local
/macosx-10.10/bootp-298/IPConfiguration.bproj/
H A Dipconfigd_types.h169 boolean_t requested; member in struct:__anon6952
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVChatController.h35 - (JVDirectChat *) chatViewControllerForUser:(NSString *) user withConnection:(MVChatConnection *) connection ifExists:(BOOL) exists userInitiated:(BOOL) requested;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVChatController.h35 - (JVDirectChat *) chatViewControllerForUser:(NSString *) user withConnection:(MVChatConnection *) connection ifExists:(BOOL) exists userInitiated:(BOOL) requested;
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVChatController.h35 - (JVDirectChat *) chatViewControllerForUser:(NSString *) user withConnection:(MVChatConnection *) connection ifExists:(BOOL) exists userInitiated:(BOOL) requested;
/macosx-10.10/xnu-2782.1.97/osfmk/mach/
H A Dthread_policy.h271 integer_t requested; member in struct:thread_policy_state
/macosx-10.10/zsh-61/zsh/Functions/Misc/
H A Dzkbd65 If you do not press the requested keys within 10 seconds, key reading will
66 abort. If your keyboard does not have a requested key, press Space to
173 If your keyboard does not have the requested key, press Space to skip to
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_compression_program.c294 ssize_t ret, requested, avail; local
297 requested = buf_len > SSIZE_MAX ? SSIZE_MAX : buf_len;
301 ret = read(state->child_stdout, buf, requested);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/
H A Dsets_c.tcl69 * the requested functionality
/macosx-10.10/cups-408/cups/cups/
H A Dipp-support.c562 { /* orientation-requested enums */
813 * given requested-attributes attribute.
816 * list of "requested-attribute" values supplied in an IPP request. All IANA-
837 ipp_attribute_t *requested; /* requested-attributes attribute */ local
892 "orientation-requested-actual",
945 "font-name-requested",
946 "font-name-requested-default",
947 "font-name-requested-supported",
948 "font-size-requested",
[all...]

Completed in 283 milliseconds

12345