Searched defs:Status (Results 1 - 25 of 171) sorted by relevance

1234567

/illumos-gate/usr/src/uts/intel/io/acpica/dispatcher/
H A Ddscontrol.c63 * RETURN: Status
75 ACPI_STATUS Status = AE_OK; local
116 Status = AE_NO_MEMORY;
143 Status = AE_CTRL_TRUE;
157 return (Status);
168 * RETURN: Status
180 ACPI_STATUS Status = AE_OK; local
230 Status = AE_AML_INFINITE_LOOP;
238 Status = AE_CTRL_PENDING;
273 Status
[all...]
H A Ddsargs.c74 * RETURN: Status.
87 ACPI_STATUS Status; local
112 Status = AE_NO_MEMORY;
116 Status = AcpiDsInitAmlWalk (WalkState, Op, NULL, AmlStart,
118 if (ACPI_FAILURE (Status))
131 Status = AcpiPsParseAml (WalkState);
132 if (ACPI_FAILURE (Status))
157 Status = AE_NO_MEMORY;
163 Status = AcpiDsInitAmlWalk (WalkState, Op, NULL, AmlStart,
165 if (ACPI_FAILURE (Status))
201 ACPI_STATUS Status; local
250 ACPI_STATUS Status; local
298 ACPI_STATUS Status; local
348 ACPI_STATUS Status; local
397 ACPI_STATUS Status; local
[all...]
H A Ddsdebug.c84 ACPI_STATUS Status; local
99 Status = AcpiNsHandleToPathname (Node, &Buffer, TRUE);
100 if (ACPI_SUCCESS (Status))
120 * PARAMETERS: Status - Method execution status
133 ACPI_STATUS Status,
148 if ((Status & AE_CODE_MASK) == AE_CODE_CONTROL)
177 AcpiFormatException (Status)));
243 ACPI_STATUS Status,
132 AcpiDsDumpMethodStack( ACPI_STATUS Status, ACPI_WALK_STATE *WalkState, ACPI_PARSE_OBJECT *Op) argument
H A Ddsinit.c73 * RETURN: Status
93 ACPI_STATUS Status; local
117 Status = AcpiDsInitializeRegion (ObjHandle);
118 if (ACPI_FAILURE (Status))
120 ACPI_EXCEPTION ((AE_INFO, Status,
195 * RETURN: Status
207 ACPI_STATUS Status; local
216 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId);
217 if (ACPI_FAILURE (Status))
219 return_ACPI_STATUS (Status);
[all...]
H A Ddswload.c67 * RETURN: Status
140 * RETURN: Status
153 ACPI_STATUS Status; local
202 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
205 if (Status == AE_NOT_FOUND)
213 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
218 if (ACPI_FAILURE (Status))
220 ACPI_ERROR_NAMESPACE (Path, Status);
221 return_ACPI_STATUS (Status);
310 Status
451 ACPI_STATUS Status = AE_OK; local
[all...]
H A Ddswload2.c64 * RETURN: Status
77 ACPI_STATUS Status; local
97 Status = AcpiDsExecBeginOp (WalkState, OutOp);
98 return_ACPI_STATUS (Status);
152 Status = AE_OK;
161 Status = AcpiNsLookup (WalkState->ScopeInfo, BufferPtr, ObjectType,
174 Status = AcpiDsScopeStackPush (Node, ObjectType, WalkState);
175 if (ACPI_FAILURE (Status))
177 return_ACPI_STATUS (Status);
187 Status
389 ACPI_STATUS Status = AE_OK; local
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutxfinit.c68 * RETURN: Status
79 ACPI_STATUS Status; local
90 Status = AcpiOsInitialize ();
91 if (ACPI_FAILURE (Status))
93 ACPI_EXCEPTION ((AE_INFO, Status, "During OSL initialization"));
94 return_ACPI_STATUS (Status);
99 Status = AcpiUtInitGlobals ();
100 if (ACPI_FAILURE (Status))
102 ACPI_EXCEPTION ((AE_INFO, Status, "During initialization of globals"));
103 return_ACPI_STATUS (Status);
158 ACPI_STATUS Status = AE_OK; local
270 ACPI_STATUS Status = AE_OK; local
[all...]
H A Dutexcep.c59 * PARAMETERS: Status - The ACPI_STATUS code to be formatted
71 ACPI_STATUS Status)
79 Exception = AcpiUtValidateException (Status);
85 "Unknown exception code: 0x%8.8X", Status));
100 * PARAMETERS: Status - The ACPI_STATUS code to be formatted
112 ACPI_STATUS Status)
122 * Status is composed of two parts, a "type" and an actual code
124 SubStatus = (Status & ~AE_CODE_MASK);
126 switch (Status & AE_CODE_MASK)
70 AcpiFormatException( ACPI_STATUS Status) argument
H A Dutlock.c59 * RETURN: Status
69 ACPI_STATUS Status; local
73 Status = AcpiOsCreateMutex (&Lock->ReaderMutex);
74 if (ACPI_FAILURE (Status))
76 return (Status);
79 Status = AcpiOsCreateMutex (&Lock->WriterMutex);
80 return (Status);
105 * RETURN: Status
120 ACPI_STATUS Status; local
123 Status
146 ACPI_STATUS Status; local
188 ACPI_STATUS Status; local
[all...]
/illumos-gate/usr/src/cmd/acpi/acpixtract/
H A Daxmain.c96 int Status; local
164 Status = AxExtractTables (Filename, NULL, AX_OPTIONAL_TABLES);
169 Status = AxExtractToMultiAmlFile (Filename);
174 Status = AxListTables (Filename);
179 Status = AxExtractTables (Filename, AcpiGbl_Optarg, AX_REQUIRED_TABLE);
187 Status = AxExtractTables (Filename, "DSDT", AX_REQUIRED_TABLE);
188 if (Status)
190 return (Status);
193 Status = AxExtractTables (Filename, "SSDT", AX_OPTIONAL_TABLES);
197 return (Status);
[all...]
/illumos-gate/usr/src/cmd/acpi/common/
H A Dutexcep.c59 * PARAMETERS: Status - The ACPI_STATUS code to be formatted
71 ACPI_STATUS Status)
79 Exception = AcpiUtValidateException (Status);
85 "Unknown exception code: 0x%8.8X", Status));
100 * PARAMETERS: Status - The ACPI_STATUS code to be formatted
112 ACPI_STATUS Status)
122 * Status is composed of two parts, a "type" and an actual code
124 SubStatus = (Status & ~AE_CODE_MASK);
126 switch (Status & AE_CODE_MASK)
70 AcpiFormatException( ACPI_STATUS Status) argument
/illumos-gate/usr/src/uts/intel/io/acpica/events/
H A Devxfevnt.c61 * RETURN: Status
71 ACPI_STATUS Status = AE_OK; local
102 Status = AcpiHwSetMode (ACPI_SYS_MODE_ACPI);
103 if (ACPI_FAILURE (Status))
106 return_ACPI_STATUS (Status);
113 return_ACPI_STATUS (Status);
125 * RETURN: Status
135 ACPI_STATUS Status = AE_OK; local
157 Status = AcpiHwSetMode (ACPI_SYS_MODE_LEGACY);
159 if (ACPI_FAILURE (Status))
194 ACPI_STATUS Status = AE_OK; local
260 ACPI_STATUS Status = AE_OK; local
322 ACPI_STATUS Status = AE_OK; local
368 ACPI_STATUS Status; local
[all...]
H A Devevent.c70 * RETURN: Status
80 ACPI_STATUS Status; local
98 Status = AcpiEvFixedEventInitialize ();
99 if (ACPI_FAILURE (Status))
101 ACPI_EXCEPTION ((AE_INFO, Status,
103 return_ACPI_STATUS (Status);
106 Status = AcpiEvGpeInitialize ();
107 if (ACPI_FAILURE (Status))
109 ACPI_EXCEPTION ((AE_INFO, Status,
111 return_ACPI_STATUS (Status);
134 ACPI_STATUS Status; local
189 ACPI_STATUS Status; local
[all...]
H A Devglock.c67 * RETURN: Status
77 ACPI_STATUS Status; local
92 Status = AcpiInstallFixedEventHandler (ACPI_EVENT_GLOBAL,
102 if (Status == AE_NO_HARDWARE_RESPONSE)
110 Status = AcpiOsCreateLock (&AcpiGbl_GlobalLockPendingLock);
111 if (ACPI_FAILURE (Status))
113 return_ACPI_STATUS (Status);
118 return_ACPI_STATUS (Status);
128 * RETURN: Status
138 ACPI_STATUS Status; local
171 ACPI_STATUS Status; local
234 ACPI_STATUS Status; local
337 ACPI_STATUS Status = AE_OK; local
[all...]
H A Devmisc.c103 * RETURN: Status
119 ACPI_STATUS Status = AE_OK; local
187 Status = AcpiOsExecute (OSL_NOTIFY_HANDLER,
189 if (ACPI_FAILURE (Status))
194 return (Status);
267 ACPI_STATUS Status; local
284 Status = AcpiDisableEvent (i, 0);
285 if (ACPI_FAILURE (Status))
294 Status = AcpiEvWalkGpeList (AcpiHwDisableGpeBlock, NULL);
296 Status
[all...]
H A Devsci.c68 * RETURN: Status code indicates whether interrupt was handled.
119 * RETURN: Status code indicates whether interrupt was handled.
169 * RETURN: Status code indicates whether interrupt was handled.
204 * RETURN: Status
214 UINT32 Status = AE_OK; local
220 Status = AcpiOsInstallInterruptHandler ((UINT32) AcpiGbl_FADT.SciInterrupt,
222 return_ACPI_STATUS (Status);
251 ACPI_STATUS Status; local
259 Status = AcpiOsRemoveInterruptHandler ((UINT32) AcpiGbl_FADT.SciInterrupt,
264 return (Status);
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexresnte.c65 * RETURN: Status
87 ACPI_STATUS Status = AE_OK; local
155 Status = AcpiDsGetPackageArguments (SourceDesc);
156 if (ACPI_SUCCESS (Status))
174 Status = AcpiDsGetBufferArguments (SourceDesc);
175 if (ACPI_SUCCESS (Status))
223 Status = AcpiExReadDataFromField (WalkState, SourceDesc, &ObjDesc);
291 return_ACPI_STATUS (Status);
/illumos-gate/usr/src/uts/intel/io/acpica/hardware/
H A Dhwacpi.c59 * RETURN: Status
70 ACPI_STATUS Status; local
115 Status = AcpiHwWritePort (AcpiGbl_FADT.SmiCommand,
125 Status = AcpiHwWritePort (AcpiGbl_FADT.SmiCommand,
136 if (ACPI_FAILURE (Status))
138 ACPI_EXCEPTION ((AE_INFO, Status,
140 return_ACPI_STATUS (Status);
182 ACPI_STATUS Status; local
205 Status = AcpiReadBitRegister (ACPI_BITREG_SCI_ENABLE, &Value);
206 if (ACPI_FAILURE (Status))
[all...]
H A Dhwtimer.c60 * RETURN: Status and timer resolution
99 * RETURN: Status and current timer value (ticks)
109 ACPI_STATUS Status; local
127 Status = AcpiHwRead (Ticks, &AcpiGbl_FADT.XPmTimerBlock);
128 return_ACPI_STATUS (Status);
142 * RETURN: Status and TimeElapsed
169 ACPI_STATUS Status; local
224 Status = AcpiUtShortDivide (((UINT64) DeltaTicks) * ACPI_USEC_PER_SEC,
228 return_ACPI_STATUS (Status);
/illumos-gate/usr/src/uts/intel/io/acpica/namespace/
H A Dnsxfobj.c62 * RETURN: Status
74 ACPI_STATUS Status; local
92 Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
93 if (ACPI_FAILURE (Status))
95 return (Status);
109 Status = AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
110 return (Status);
123 * RETURN: Status
137 ACPI_STATUS Status; local
152 Status
214 ACPI_STATUS Status; local
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/tables/
H A Dtbfind.c61 * RETURN: Status and table index
76 ACPI_STATUS Status; local
124 Status = AcpiTbValidateTable (&AcpiGbl_RootTableList.Tables[i]);
125 if (ACPI_FAILURE (Status))
127 return_ACPI_STATUS (Status);
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dsend_file.c50 int Status; local
77 if ((Status =
79 return (Status);
90 if ((Status = ADM_Boot_recv(&Message, &Timeout)) != 0) {
H A Dsmq.c155 int Status; local
162 if ((Status = xsem_xwait(&smq->smq_msgAvail, 1, timeout)) == XSEM_ETIME)
165 if (Status != 0)
/illumos-gate/usr/src/cmd/acpi/acpidump/
H A Dtbxfroot.c96 * RETURN: Status
145 * RETURN: Status, RSDP physical address
286 ACPI_STATUS Status; local
303 Status = AcpiTbValidateRsdp (
305 if (ACPI_SUCCESS (Status))
/illumos-gate/usr/src/uts/intel/io/acpica/disassembler/
H A Ddmdeferred.c70 * RETURN: Status
82 ACPI_STATUS Status; local
108 Status = AcpiDmDeferredParse (
110 if (ACPI_FAILURE (Status))
112 return (Status);
152 * RETURN: Status
166 ACPI_STATUS Status; local
192 Status = AcpiDsInitAmlWalk (WalkState, Op, NULL, Aml,
194 if (ACPI_FAILURE (Status))
196 return_ACPI_STATUS (Status);
[all...]

Completed in 125 milliseconds

1234567