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

1234

/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Ddginit.c228 ** stage of the fork we're currently in.
232 ** stage indicates the stage in the fork operation
252 rpc_fork_stage_id_t stage
260 * Next, handle any stage-specific operations for this
263 switch ((int)stage)
266 rpc__dg_conv_fork_handler(stage);
267 rpc__dg_cct_fork_handler(stage);
268 rpc__dg_sct_fork_handler(stage);
269 rpc__dg_ccallt_fork_handler(stage);
[all...]
H A Ddgccallt.c240 rpc_fork_stage_id_t stage
245 switch ((int)stage)
H A Dcominit.c1634 ** stage of the fork we're currently in.
1638 ** stage indicates the stage in the fork operation
1657 rpc_fork_stage_id_t stage
1667 * First, take care of stage-independent operations, such as
1671 * Next, take care of any stage-specific activities for this
1675 switch ((int)stage)
1679 rpc__network_fork_handler(stage);
1691 (*rpc_protocol->prot_fork_handler)(stage);
1696 rpc__obj_fork_handler(stage);
[all...]
H A Dcomobj.c186 ** INPUTS: stage The stage of the fork we are
206 rpc_fork_stage_id_t stage
211 switch ((int)stage)
H A Ddgclive.c442 rpc_fork_stage_id_t stage
447 switch ((int)stage)
H A Drpclist.c547 ** Perform fork-related processing, depending on what stage of the
552 ** stage The current stage of the fork process.
571 rpc_fork_stage_id_t stage
574 switch ((int)stage)
/macosx-10.10.1/pdisk-9/
H A Dutil.c134 int stage; local
139 case development: stage = 'd'; break;
140 case alpha: stage = 'a'; break;
141 case beta: stage = 'b'; break;
142 case final: stage = 'f'; break;
143 default: stage = '?'; break;
152 kVersionMajor, kVersionMinor, kVersionBugFix, stage, kVersionDelta);
160 kVersionMajor, kVersionMinor, stage, kVersionDelta);
/macosx-10.10.1/xnu-2782.1.97/config/
H A Dnewvers.pl121 my $stage = $2;
124 $stage = "r" if (!$stage || ($stage eq "fc"));
128 $VERSION_STAGE = 'VERSION_STAGE_DEV' if ($stage eq 'd');
129 $VERSION_STAGE = 'VERSION_STAGE_ALPHA' if ($stage eq 'a');
130 $VERSION_STAGE = 'VERSION_STAGE_BETA' if ($stage eq 'b');
131 $VERSION_STAGE = 'VERSION_STAGE_RELEASE' if ($stage eq 'r');
135 $VERSION_LONG .= "$stage$VERSION_PRERELEASE_LEVEL" if (($stage n
[all...]
/macosx-10.10.1/OpenSSL098-52/src/demos/eay/
H A Dloadrsa.c9 void callback(stage,count,arg)
10 int stage,count;
16 fprintf(out,"%d",stage);
17 if (stage == 3)
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A DCSCommonPriv.h115 typedef CFTypeRef (^SecCodeCallback)(SecStaticCodeRef code, CFStringRef stage, CFDictionaryRef info); variable
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DCSCommonPriv.h115 typedef CFTypeRef (^SecCodeCallback)(SecStaticCodeRef code, CFStringRef stage, CFDictionaryRef info); variable
/macosx-10.10.1/Chess-310.6/sjeng/
H A Depd.c43 int stage = 0; local
65 if(stage == 0 && isdigit(inbuff[i]))
72 else if (stage == 0 && inbuff[i] == '/')
78 else if (stage == 0 && isalpha(inbuff[i]))
105 stage++;
107 if (stage == 1)
117 else if (stage == 2)
146 i--; /* go back to space so we move to next stage */
149 else if (stage == 3)
169 else if (stage
[all...]
/macosx-10.10.1/Heimdal-398.1.2/appl/popper/
H A Dauth_gssapi.c49 int stage; member in struct:gss_state
92 if(gs->stage == 0) {
95 gs->stage++;
103 if(gs->stage == 1) {
127 gs->stage++;
132 if(gs->stage == 2) {
152 gs->stage++;
155 if(gs->stage == 3) {
233 gs->stage = 0;
/macosx-10.10.1/IOGraphics-485/tools/
H A Dhibparse.c201 uint32_t stage; local
255 stage = 2;
280 switch (stage)
319 if (!stage)
321 stage--;
326 if (!stage) printf("phys 0x%x, 0x%x\n", ppnum, count);
335 if (2 == stage) ppnum = gIOHibernateHandoffPages[page];
336 else if (!stage)
347 if (stage >= 2)
350 if (stage >
[all...]
/macosx-10.10.1/Security-57031.1.35/certificates/ota_cert_tool/Scripts/
H A DBuildAsset.rb25 puts "Calling stage on the BuildPKIAsset instance"
26 b.stage
27 puts "Calling stage on the BuildPKIAsset sign"
H A DFile.rb83 def stage method in class:BuildPKIAsset
85 puts "In BuildPKIAsset.stage" if @verbose
113 puts "About to call assettool stage" if @verbose
114 `xcrun -sdk iphoneos.internal assettool stage -p #{@asset_directory} -s #{@staging_directory}`
115 puts "Completed call to assettool stage" if @verbose
117 puts "Done with BuildPKIAsset.stage" if @verbose
135 #b.stage
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGWorklist.cpp109 return iter->value->stage == Plan::Ready ? Compiled : Compiling;
134 if (iter->value->stage != Plan::Ready) {
155 if (plan->stage != Plan::Ready)
186 RELEASE_ASSERT(plan->stage == Plan::Ready);
259 RELEASE_ASSERT(plan->stage != Plan::Cancelled); // Should not be cancelled, yet.
269 if (plan->stage != Plan::Cancelled)
274 if (m_readyPlans[i]->stage != Plan::Cancelled)
347 if (plan->stage == Plan::Cancelled) {
363 if (plan->stage == Plan::Cancelled) {
377 if (plan->stage
[all...]
H A DDFGPlan.cpp128 , stage(Preparing)
162 RELEASE_ASSERT((path == CancelPath) == (stage == Cancelled));
418 stage = Compiling;
423 stage = Compiled;
429 stage = Ready;
481 if (stage == Cancelled)
507 stage = Cancelled;
H A DDFGPlan.h105 Stage stage; member in struct:JSC::DFG::Plan
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/utils/
H A Dpluginviewer.c277 sasl_info_callback_stage_t stage,
284 if (stage == SASL_INFO_LIST_START || stage == SASL_INFO_LIST_END) {
305 sasl_info_callback_stage_t stage,
312 if (stage == SASL_INFO_LIST_START || stage == SASL_INFO_LIST_END) {
333 sasl_info_callback_stage_t stage,
340 if (stage == SASL_INFO_LIST_START || stage == SASL_INFO_LIST_END) {
275 list_installed_server_mechanisms( server_sasl_mechanism_t *m, sasl_info_callback_stage_t stage, void *rock ) argument
303 list_installed_client_mechanisms( client_sasl_mechanism_t *m, sasl_info_callback_stage_t stage, void *rock ) argument
331 list_installed_auxprop_mechanisms( sasl_auxprop_plug_t *m, sasl_info_callback_stage_t stage, void *rock ) argument
/macosx-10.10.1/xnu-2782.1.97/tools/tests/affinity/
H A Dsets.c27 * <------ "stage" -----> <------ "stage" ----->
31 * By default there are 2 stage (worker) threads per production line.
33 * queues it on an output queue. By default the initial stage (producer)
99 stage_info_t *stage[WORKERS_MAX]; member in struct:line_info
208 DBG("Starting %s set: %d stage: %d\n", sp->name, lp->setnum, sp->stagenum);
431 lp->stage[j] = sp;
443 sp = lp->stage[j];
451 sp->input = &lp->stage[j]->bufq;
452 sp->output = &lp->stage[(
[all...]
/macosx-10.10.1/Security-57031.1.35/certificates/CertificateTool/BuildiOSAsset/
H A DBuildAsset.rb110 def stage method in class:BuildPKIAsset
113 output_str "In BuildPKIAsset.stage"
142 output_str "About to call assettool stage"
143 `xcrun -sdk iphoneos.internal assettool stage -p #{@asset_directory} -s #{@staging_directory}`
144 output_str "Completed call to assettool stage"
149 output_str "Done with BuildPKIAsset.stage"
203 do_output_str "Creating a BuildPKIAsset object to stage and sign the asset"
205 b.stage
/macosx-10.10.1/BerkeleyDB-21/db/dist/
H A Ds_winmsi27 # './winmsi/stage' as a staging area:
64 PRODUCT_STAGE=`pwd`/winmsi/stage
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/CellSPU/
H A DSPUNopFiller.cpp140 const InstrStage *stage = IID->beginStage(sc); local
141 unsigned FUs = stage->getUnits();
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOHibernateRestoreKernel.c428 uint32_t stage; local
515 stage = 2;
541 switch (stage)
580 if (!stage)
582 stage--;
594 if (2 == stage) ppnum = gIOHibernateHandoffPages[page];
595 else if (!stage)
607 if (stage >= 2)
610 if (stage >= 1)
617 if (stage !
[all...]

Completed in 208 milliseconds

1234