Searched refs:instance (Results 1 - 25 of 51) sorted by path

123

/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex560 for instance happen to occur in several files of the BeOS R5 distribution
/haiku/headers/cpp/
H A Dpthread_alloc105 static void _S_destructor(void *instance);
/haiku/headers/os/drivers/pcmcia/
H A Dds.h51 struct dev_link_t *instance; member in struct:bind_info_t
/haiku/headers/private/debugger/debug_info/
H A DFunction.h60 void AddInstance(FunctionInstance* instance);
61 void RemoveInstance(FunctionInstance* instance);
/haiku/headers/private/debugger/model/
H A DBreakpoint.h43 UserBreakpointInstance* instance);
45 UserBreakpointInstance* instance);
H A DUserBreakpoint.h92 bool AddInstance(UserBreakpointInstance* instance);
94 UserBreakpointInstance* instance);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dattrlist.c198 ale->instance = attr->instance;
/haiku/src/apps/cortex/support/
H A DBasicThread.h153 BasicThread* instance = static_cast<BasicThread*>(user); local
154 instance->run();
/haiku/src/apps/debugger/user_interface/gui/expression_eval_window/
H A DExpressionEvaluationWindow.cpp351 FunctionInstance* instance = fSelectedFrame->Function(); local
352 if (instance != NULL) {
354 = instance->GetFunctionDebugInfo();
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DExceptionStopConfigView.cpp143 FunctionInstance* instance = info->FunctionByName( local
145 if (instance == NULL)
146 instance = info->FunctionByName("__throw(void)");
148 if (instance != NULL) {
149 _foundAddress = instance->Address();
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1922 FunctionInstance* instance = fSourceView->fStackFrame->Function();
1923 if (instance == NULL)
1926 FileSourceCode* code = instance->GetFunction()->GetSourceCode();
2132 FunctionInstance* instance = fStackFrame->Function(); local
2133 if (instance == NULL)
2138 if (instance->SourceCodeState()
2140 fListener->FunctionSourceCodeRequested(instance, true);
2144 code = instance->GetSourceCode();
2146 Function* function = instance->GetFunction();
2150 fListener->FunctionSourceCodeRequested(instance, fals
[all...]
/haiku/src/bin/pcmcia-cs/
H A Dcardctl.c467 int socket, instance, status; member in struct:stab_t
486 stab[nstab].driver, &stab[nstab].instance,
515 eprintf("INSTANCE", "%d", s->instance);
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp2071 TRACE_CONTROL(" function instance: %p\n", functionInstance);
2120 FunctionInstance* instance = it.Next();) {
2121 TRACE_CONTROL(" function instance %p: range: %#" B_PRIx64 " - %#"
2122 B_PRIx64 "\n", instance, instance->Address(),
2123 instance->Address() + instance->Size());
2125 // get the breakpoint address for the instance
2127 if (instance == functionInstance) {
2133 functionDebugInfo = instance
[all...]
/haiku/src/kits/debugger/debug_info/
H A DFunction.cpp50 FunctionInstance* instance = it.Next();) {
51 instance->SetSourceCode(NULL, FUNCTION_SOURCE_NOT_LOADED);
76 Function::AddInstance(FunctionInstance* instance) argument
79 fInstances.Add(instance);
81 instance->SourceFile()->AcquireReference();
82 instance->SourceFile()->AddListener(this);
88 Function::RemoveInstance(FunctionInstance* instance) argument
90 fInstances.Remove(instance);
91 if (fInstances.IsEmpty() && instance->SourceFile() != NULL) {
92 instance
[all...]
H A DImageDebugInfo.cpp70 FunctionInstance* instance = new(std::nothrow) FunctionInstance( local
72 if (instance == NULL
73 || !fFunctions.BinaryInsert(instance, &_CompareFunctions)) {
74 delete instance;
80 fMainFunction = instance;
H A DTeamDebugInfo.cpp520 FunctionInstance* instance = imageInfo->FunctionAtAddress( local
522 if (instance != NULL && instance->SourceCodeState()
524 _code = instance->GetSourceCode();
573 FunctionInstance* instance = imageDebugInfo->MainFunction(); local
574 if (instance != NULL)
575 fMainFunction = instance;
705 FunctionInstance* instance = imageDebugInfo->FunctionAt(i); i++) {
707 Function* function = fFunctions->Lookup(instance);
710 function->AddInstance(instance);
[all...]
/haiku/src/kits/debugger/debug_managers/
H A DBreakpointManager.cpp68 UserBreakpointInstance* instance = userBreakpoint->InstanceAt(i); i++) {
70 TRACE_CONTROL(" breakpoint instance %p\n", instance);
72 if (instance->GetBreakpoint() != NULL) {
77 target_addr_t address = instance->Address();
97 TRACE_CONTROL(" -> adding instance to breakpoint %p\n", breakpoint);
99 breakpoint->AddUserBreakpoint(instance);
100 instance->SetBreakpoint(breakpoint);
119 UserBreakpointInstance* instance = userBreakpoint->InstanceAt(i);
121 TRACE_CONTROL(" breakpoint instance
343 UserBreakpointInstance* instance = userBreakpoint->InstanceAt(i); local
432 UserBreakpointInstance* instance = new(std::nothrow) local
[all...]
/haiku/src/kits/debugger/model/
H A DBreakpoint.cpp63 UserBreakpointInstance* instance = it.Next();) {
64 if (instance->GetUserBreakpoint()->IsEnabled())
73 Breakpoint::AddUserBreakpoint(UserBreakpointInstance* instance) argument
75 fUserBreakpoints.Add(instance);
80 Breakpoint::RemoveUserBreakpoint(UserBreakpointInstance* instance) argument
82 fUserBreakpoints.Remove(instance);
H A DTeam.cpp454 UserBreakpointInstance* instance = it.Next();) {
455 breakpoints.AddItem(instance->GetUserBreakpoint());
594 TRACE_CODE(" -> no function instance\n");
598 // If the function instance has disassembled code attached, we can get the
656 // Get some function instance and ask its image debug info to provide us
H A DUserBreakpoint.cpp112 for (int32 i = 0; UserBreakpointInstance* instance = fInstances.ItemAt(i);
114 delete instance;
134 UserBreakpoint::AddInstance(UserBreakpointInstance* instance) argument
136 return fInstances.AddItem(instance);
141 UserBreakpoint::RemoveInstance(UserBreakpointInstance* instance) argument
143 fInstances.RemoveItem(instance);
/haiku/src/libs/libtelnet/
H A Dkerberos.c155 char instance[INST_SZ]; local
168 memset(instance, 0, sizeof(instance));
171 strncpy(instance, realm, sizeof(instance));
173 instance[sizeof(instance)-1] = '\0';
181 if ((r = krb_mk_req(&lauth, krb_service_name, instance, realm, 0L))) {
185 if ((r = krb_get_cred(krb_service_name, instance, realm, &cred))) {
245 char instance[INST_S local
[all...]
H A Dkrb4encpwd.c284 char randchal[REALM_SZ], instance[ANAME_SZ], *cp; local
314 strcpy(instance, RemoteHostName);
315 if ((cp = strchr(instance, '.')) != 0) *cp = '\0';
317 if (r = krb_mk_encpwd_req(&krb_token, KRB_SERVICE_NAME, instance, realm, Challenge, UserNameRequested, user_passwd)) {
/haiku/src/libs/print/libprint/
H A DPrinterDriver.cpp266 PrinterDriverInstance instance(spoolFolder);
267 return instance.GetPrinterDriver()->AddPrinter(printerName);
272 PrinterDriverInstance instance(spoolFolder);
273 return instance.GetPrinterDriver()->ConfigPage(settings);
278 PrinterDriverInstance instance(spoolFolder);
279 return instance.GetPrinterDriver()->ConfigJob(settings);
284 PrinterDriverInstance instance(spoolFolder);
285 return instance.GetPrinterDriver()->TakeJob(printJob, settings);
292 PrinterDriverInstance instance; local
293 instance
[all...]
/haiku/headers/os/drivers/
H A DACPI.h294 status_t (*get_table)(const char *signature, uint32 instance,
/haiku/headers/os/interface/
H A DFont.h286 status_t LoadFont(const char* path, uint16 index, uint16 instance);
290 size_t size, size_t offset, uint16 index, uint16 instance);

Completed in 144 milliseconds

123