Searched refs:Context (Results 1 - 25 of 89) sorted by relevance

1234

/haiku-fatelf/headers/build/os/package/
H A DContext.h1 #include <../os/package/Context.h>
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/events/
H A Devsci.c132 void *Context);
139 * PARAMETERS: Context - Calling Context
150 void *Context)
152 ACPI_GPE_XRUPT_INFO *GpeXruptList = Context;
185 * PARAMETERS: Context - Calling Context
195 void *Context)
197 ACPI_GPE_XRUPT_INFO *GpeXruptList = Context;
149 AcpiEvSciXruptHandler( void *Context) argument
194 AcpiEvGpeXruptHandler( void *Context) argument
H A Devmisc.c129 void *Context);
272 * PARAMETERS: Context - To be passed to the notify handler
283 void *Context)
285 ACPI_GENERIC_STATE *Info = (ACPI_GENERIC_STATE *) Context;
298 Info->Notify.Global->Context);
308 HandlerObj->Notify.Context);
282 AcpiEvNotifyDispatch( void *Context) argument
H A Devxface.c139 * Context - Value passed to the handler on each GPE
158 void *Context)
204 AcpiGbl_GlobalNotify[i].Context = Context;
282 HandlerObj->Notify.Context = Context;
384 AcpiGbl_GlobalNotify[i].Context = NULL;
513 * Context - Value passed to the handler on each event
527 void *Context)
557 AcpiGbl_GlobalEventHandlerContext = Context;
154 AcpiInstallNotifyHandler( ACPI_HANDLE Device, UINT32 HandlerType, ACPI_NOTIFY_HANDLER Handler, void *Context) argument
[all...]
/haiku-fatelf/src/bin/debug/strace/
H A DTypeHandler.cpp14 #include "Context.h"
51 TypeHandlerImpl<void>::GetParameterValue(Context &, Parameter *, const void *)
58 TypeHandlerImpl<void>::GetReturnValue(Context &, uint64 value)
73 TypeHandlerImpl<bool>::GetParameterValue(Context &, Parameter *,
81 TypeHandlerImpl<bool>::GetReturnValue(Context &, uint64 value)
96 read_string(Context &context, void *data)
98 if (data == NULL || !context.GetContents(Context::STRINGS))
129 TypeHandlerImpl<const void*>::GetParameterValue(Context &context, Parameter *,
137 TypeHandlerImpl<const void*>::GetReturnValue(Context &context, uint64 value)
145 TypeHandlerImpl<const char*>::GetParameterValue(Context
[all...]
H A DContext.cpp10 #include "Context.h"
16 Context::FormatSigned(int64 value, int bytes) const
49 Context::FormatUnsigned(uint64 value) const
57 Context::FormatFlags(uint64 value) const
65 Context::FormatPointer(const void *address) const
H A DTypeHandler.h20 class Context;
32 virtual string GetParameterValue(Context &, Parameter *,
34 virtual string GetReturnValue(Context &, uint64 value) = 0;
43 string GetParameterValue(Context &c, Parameter *, const void *);
44 string GetReturnValue(Context &, uint64 value);
47 string RenderValue(Context &, unsigned int value) const;
60 string GetParameterValue(Context &, Parameter *, const void *);
61 string GetReturnValue(Context &, uint64 value);
135 string GetParameterValue(Context &, Parameter *, const void *);
136 string GetReturnValue(Context
[all...]
H A DNetworkTypes.cpp17 #include "Context.h"
27 obtain_pointer_data(Context &context, Type *data, void *address, uint32 what)
52 read_fdset(Context &context, void *data)
95 TypeHandlerImpl<fd_set *>::GetParameterValue(Context &context, Parameter *,
99 if (data != NULL && context.GetContents(Context::SIMPLE_STRUCTS))
107 TypeHandlerImpl<fd_set *>::GetReturnValue(Context &context, uint64 value)
115 format_pointer_value(Context &context, void *address)
119 if (obtain_pointer_data(context, &data, address, Context::COMPLEX_STRUCTS))
140 format_socket_family(Context &context, int family)
142 if (context.GetContents(Context
[all...]
H A DContext.h14 class Context { class
25 Context(Syscall *sc, char *data, MemoryReader &reader, function in class:Context
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/
H A DEbmlStream.cpp52 EbmlElement * EbmlStream::FindNextElement(const EbmlSemanticContext & Context, int & UpperLevel, const uint64 MaxDataSize, bool AllowDummyElt, unsigned int MaxLowerLevel) argument
54 return EbmlElement::FindNextElement(Stream, Context, UpperLevel, MaxDataSize, AllowDummyElt, MaxLowerLevel);
H A DEbmlMaster.cpp48 :EbmlElement(0), Context(aContext), bChecksumUsed(bChecksumUsedByDefault)
58 ,Context(ElementToClone.Context)
88 \todo write all the Mandatory elements in the Context, otherwise assert
182 if (Context.Size == 0)
187 assert(Context.MyTable != NULL);
190 for (EltIdx = 0; EltIdx < Context.Size; EltIdx++) {
191 if (Context.MyTable[EltIdx].Mandatory && Context.MyTable[EltIdx].Unique) {
192 assert(Context
[all...]
H A DEbmlElement.cpp329 EbmlElement * EbmlElement::FindNextElement(IOCallback & DataStream, const EbmlSemanticContext & Context, int & UpperLevel, argument
401 EbmlElement * Result = CreateElementUsingContext(PossibleID, Context, UpperLevel, false, AllowDummyElt, MaxLowerLevel);
441 EbmlElement * EbmlElement::SkipData(EbmlStream & DataStream, const EbmlSemanticContext & Context, EbmlElement * TestReadElt, bool AllowDummyElt) argument
460 Result = DataStream.FindNextElement(Context, bUpperElement, 0xFFFFFFFFL, AllowDummyElt);
468 for (EltIndex = 0; EltIndex < Context.Size; EltIndex++) {
469 if (EbmlId(*Result) == Context.MyTable[EltIndex].GetCallbacks.GlobalId) {
471 Result = Result->SkipData(DataStream, Context.MyTable[EltIndex].GetCallbacks.Context, NULL);
476 if (EltIndex >= Context.Size) {
477 if (Context
446 assert(ElementPosition < SizePosition); DataStream.I_O().setFilePointer(SizePosition + CodedSizeLength(Size, SizeLength, bSizeIsFinite) + Size, seek_beginning); } else { bool bEndFound = false; while (!bEndFound && Result == NULL) { if (TestReadElt == NULL) { int bUpperElement = 0; Result = DataStream.FindNextElement(Context, bUpperElement, 0xFFFFFFFFL, AllowDummyElt); } else { Result = TestReadElt; } if (Result != NULL) { unsigned int EltIndex; for (EltIndex = 0; EltIndex < Context.Size; EltIndex++) { if (EbmlId(*Result) == Context.MyTable[EltIndex].GetCallbacks.GlobalId) { Result = Result->SkipData(DataStream, Context.MyTable[EltIndex].GetCallbacks.Context, NULL); break; } } if (EltIndex >= Context.Size) argument
[all...]
/haiku-fatelf/src/bin/patch/
H A Dargmatch.h80 # define invalid_arg(Context, Value, Problem) \
81 argmatch_invalid ((Context), (Value), (Problem))
107 # define XARGMATCH(Context, Arg, Arglist, Vallist) \
108 (Vallist [__xargmatch_internal ((Context), (Arg), (Arglist), \
113 # define XARGCASEMATCH(Context, Arg, Arglist, Vallist) \
114 (Vallist [__xargmatch_internal ((Context), (Arg), (Arglist), \
/haiku-fatelf/headers/os/package/
H A DDropRepositoryRequest.h11 #include <package/Context.h>
H A DAddRepositoryRequest.h11 #include <package/Context.h>
H A DRefreshRepositoryRequest.h12 #include <package/Context.h>
/haiku-fatelf/src/bin/coreutils/lib/
H A Dargmatch.h61 # define invalid_arg(Context, Value, Problem) \
62 argmatch_invalid (Context, Value, Problem)
86 # define XARGMATCH(Context, Arg, Arglist, Vallist) \
87 ((Vallist) [__xargmatch_internal (Context, Arg, Arglist, \
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dargmatch.h61 # define invalid_arg(Context, Value, Problem) \
62 argmatch_invalid (Context, Value, Problem)
86 # define XARGMATCH(Context, Arg, Arglist, Vallist) \
87 ((Vallist) [__xargmatch_internal (Context, Arg, Arglist, \
/haiku-fatelf/src/bin/pkgman/
H A DDecisionProvider.h9 #include <package/Context.h>
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/ebml/
H A DEbmlStream.h61 EbmlElement * FindNextElement(const EbmlSemanticContext & Context, int & UpperLevel, const uint64 MaxDataSize, bool AllowDummyElt, unsigned int MaxLowerLevel = 1);
/haiku-fatelf/src/documentation/docbook-xsl/extensions/saxon643/com/nwalsh/saxon/
H A DUnwrapLinks.java14 import com.icl.saxon.Context;
66 protected static String getVariable(Context context, String varName) {
89 private static void setupUnwrapLinks(Context context) {
103 public static NodeSetValue unwrapLinks (Context context,
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacevents.h229 void *Context);
258 void *Context,
267 void *Context);
277 void *Context);
291 void *Context);
331 void *Context);
400 void *Context);
H A Dachware.h253 void *Context);
263 void *Context);
286 void *Context);
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/dispatcher/
H A Ddsinit.c133 void *Context,
143 * Context - Points to a init info struct
161 void *Context,
164 ACPI_INIT_WALK_INFO *Info = (ACPI_INIT_WALK_INFO *) Context;
158 AcpiDsInitOneObject( ACPI_HANDLE ObjHandle, UINT32 Level, void *Context, void **ReturnValue) argument
/haiku-fatelf/src/kits/package/
H A DActivateRepositoryCacheJob.cpp14 #include <package/Context.h>

Completed in 302 milliseconds

1234