Searched refs:context (Results 101 - 125 of 343) sorted by relevance

1234567891011>>

/haiku/headers/os/package/
H A DDropRepositoryRequest.h22 DropRepositoryRequest(const BContext& context,
H A DJob.h25 BJob(const BContext& context,
/haiku/headers/private/kernel/arch/mipsel/
H A Darch_int.h40 struct mipsel_cpu_exception_context *context);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DAuthenticationServer.h15 status_t GetAuthentication(const char* context,
/haiku/src/apps/cortex/RouteApp/
H A DNodeKey.h91 ExportContext& context) const;
94 ExportContext& context) const;
97 ExportContext& context) const;
100 ExportContext& context) const;
H A Droute_app_io.h92 ExportContext& context);
96 ExportContext& context);
101 ImportContext& context);
109 const NodeSetIOContext* context,
H A DRouteAppNodeManager.cpp455 ExportContext& context) const {
460 NodeSetIOContext& set = dynamic_cast<NodeSetIOContext&>(context);
461 context.beginElement(_NODE_SET_ELEMENT);
489 context.reportError("RouteAppNodeManager: expected a NodeSetIOContext\n");
494 ExportContext& context) const {}
497 ExportContext& context) const {
502 NodeSetIOContext& nodeSet = dynamic_cast<NodeSetIOContext&>(context);
503 context.beginContent();
535 if(context.writeObject(&io) < B_OK)
548 if(context
582 xmlImportBegin( ImportContext& context) argument
587 xmlImportAttribute( const char* key, const char* value, ImportContext& context) argument
592 xmlImportContent( const char* data, uint32 length, ImportContext& context) argument
597 xmlImportChild( IPersistent* child, ImportContext& context) argument
676 xmlImportComplete( ImportContext& context) argument
[all...]
/haiku/src/libs/compat/freebsd_iflib/compat/sys/
H A D_task.h15 typedef void gtask_fn_t(void *context);
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A D_task.h46 typedef void task_fn_t(void *context, int pending);
/haiku/src/apps/debugger/user_interface/cli/commands/
H A DCliDumpMemoryCommand.h25 CliContext& context);
H A DCliDumpStringCommand.h21 CliContext& context);
H A DCliCommand.h27 CliContext& context) = 0;
H A DCliThreadsCommand.cpp29 CliContext& context)
31 Team* team = context.GetTeam();
28 Execute(int argc, const char* const* argv, CliContext& context) argument
/haiku/src/system/kernel/posix/
H A Drealtime_sem.cpp377 mutex_init(&fLock, "realtime sem context");
404 // create new context
405 realtime_sem_context* context = new(std::nothrow) realtime_sem_context; local
406 if (context == NULL)
408 ObjectDeleter<realtime_sem_context> contextDeleter(context);
412 context->fNextPrivateSemID = fNextPrivateSemID;
421 if (context->fSemaphores.Insert(clonedSem) != B_OK) {
425 context->fSemaphoreCount++;
429 return context;
593 // get context
594 realtime_sem_context* context = atomic_pointer_get( local
655 delete_realtime_sem_context(realtime_sem_context* context) argument
662 clone_realtime_sem_context(realtime_sem_context* context) argument
678 realtime_sem_context* context = get_current_team_context(); local
797 realtime_sem_context* context = get_current_team_context(); local
808 realtime_sem_context* context = get_current_team_context(); local
[all...]
/haiku/src/kits/package/hpkg/
H A DReaderImplBase.cpp99 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
108 AttributeHandlerContext* context)
115 ReaderImplBase::AttributeHandler::Delete(AttributeHandlerContext* context) argument
136 AttributeHandlerContext* context)
138 status_t error = context->packageContentHandler->HandlePackageAttribute(
140 if (context->ignoreUnknownAttributes && error == B_NOT_SUPPORTED)
163 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
184 if (context->ignoreUnknownAttributes)
187 context->errorOutput->PrintError("Error: Invalid package "
199 AttributeHandlerContext* context)
98 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
107 NotifyDone( AttributeHandlerContext* context) argument
135 NotifyDone( AttributeHandlerContext* context) argument
162 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
198 NotifyDone( AttributeHandlerContext* context) argument
222 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
280 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
340 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
390 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
432 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
470 NotifyDone( AttributeHandlerContext* context) argument
486 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
724 HandleAttribute( AttributeHandlerContext* context, uint8 id, const AttributeValue& value, AttributeHandler** _handler) argument
754 NotifyDone( AttributeHandlerContext* context) argument
1012 ParsePackageAttributesSection( AttributeHandlerContext* context, AttributeHandler* rootAttributeHandler) argument
1053 ParseAttributeTree(AttributeHandlerContext* context, bool& _sectionHandled) argument
1093 _ParseAttributeTree(AttributeHandlerContext* context) argument
[all...]
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A Dmd5c.c101 /* MD5 initialization. Begins an MD5 operation, writing a new context.
103 void MD5_Init (MD5_CTX *context) argument
104 /* context */
106 context->count[0] = context->count[1] = 0;
109 context->state[0] = 0x67452301;
110 context->state[1] = 0xefcdab89;
111 context->state[2] = 0x98badcfe;
112 context->state[3] = 0x10325476;
117 context
119 MD5_Update(MD5_CTX *context, unsigned char *input, unsigned int inputLen) argument
161 MD5_Final(unsigned char digest[16], MD5_CTX *context) argument
[all...]
/haiku/src/tests/system/network/tcptester/
H A Dtcptester.cpp26 struct context { struct
33 static int process_command(context *ctx);
36 number(context *ctx)
51 value(context *ctx)
72 repeat(context *ctx)
91 send_packet(context *ctx, size_t bytes)
112 process_command(context *ctx)
153 read_command(context *ctx)
175 context ctx = { *(int *)data, 0 };
/haiku/src/apps/haikudepot/edits_generic/
H A DEditManager.cpp35 EditManager::Perform(UndoableEdit* edit, EditContext& context) argument
40 return Perform(UndoableEditRef(edit, true), context);
45 EditManager::Perform(const UndoableEditRef& edit, EditContext& context) argument
52 ret = edit->Perform(context);
57 edit->Undo(context);
67 EditManager::Undo(EditContext& context) argument
73 status = edit->Undo(context);
87 EditManager::Redo(EditContext& context) argument
93 status = edit->Redo(context);
/haiku/headers/private/package/hpkg/v1/
H A DReaderImplBase.h78 AttributeHandlerContext* context, uint8 id,
81 virtual status_t Delete(AttributeHandlerContext* context);
98 AttributeHandlerContext* context, uint8 id,
101 virtual status_t Delete(AttributeHandlerContext* context);
115 AttributeHandlerContext* context, uint8 id,
118 virtual status_t Delete(AttributeHandlerContext* context);
131 AttributeHandlerContext* context, uint8 id,
134 virtual status_t Delete(AttributeHandlerContext* context);
143 AttributeHandlerContext* context, uint8 id,
158 AttributeHandlerContext* context, uint
[all...]
/haiku/src/libs/compat/openbsd_wlan/crypto/
H A Dsha1.c66 /* Copy context->state[] to working vars */
95 /* Add the working vars back into context.state[] */
106 /* SHA1Init - Initialize new context */
109 SHA1Init(SHA1_CTX *context) argument
112 context->count = 0;
113 context->state[0] = 0x67452301;
114 context->state[1] = 0xEFCDAB89;
115 context->state[2] = 0x98BADCFE;
116 context->state[3] = 0x10325476;
117 context
124 SHA1Update(SHA1_CTX *context, const void *dataptr, unsigned int len) argument
148 SHA1Final(unsigned char digest[SHA1_DIGEST_LENGTH], SHA1_CTX *context) argument
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A Dmd5c.c101 /* MD5 initialization. Begins an MD5 operation, writing a new context.
103 void MD5Init (MD5_CTX *context) argument
104 /* context */
106 context->count[0] = context->count[1] = 0;
109 context->state[0] = 0x67452301;
110 context->state[1] = 0xefcdab89;
111 context->state[2] = 0x98badcfe;
112 context->state[3] = 0x10325476;
117 context
119 MD5Update(MD5_CTX *context, unsigned char *input, unsigned int inputLen) argument
161 MD5Final(unsigned char digest[16], MD5_CTX *context) argument
335 MD5_CTX context; local
[all...]
/haiku/src/system/kernel/locks/
H A Duser_mutex.cpp150 // #pragma mark - user mutex context
225 struct user_mutex_context* context =
227 if (context != NULL)
228 return context;
235 context = new(std::nothrow) user_mutex_context;
236 if (context == NULL)
239 context->lock = RW_LOCK_INITIALIZER("user mutex table");
240 if (context->table.Init() != B_OK) {
241 delete context;
245 team->user_mutex_context = context;
[all...]
/haiku/src/system/libnetwork/netresolv/net/
H A Dhesiod.c106 hesiod_init(void **context) argument
112 assert(context != NULL);
116 *context = ctx;
174 hesiod_end(void *context) argument
176 struct hesiod_p *ctx = (struct hesiod_p *) context;
178 assert(context != NULL);
192 hesiod_to_bind(void *context, const char *name, const char *type) argument
194 struct hesiod_p *ctx = (struct hesiod_p *) context;
199 assert(context != NULL);
218 rhs_list = hesiod_resolve(context,
270 hesiod_resolve(void *context, const char *name, const char *type) argument
293 hesiod_free_list(void *context, char **list) argument
542 static void *context; variable
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/authentication_server/
H A DAuthenticationServer.h21 bool _GetAuthentication(const char* context,
24 status_t _AddAuthentication(const char* context,
/haiku/src/kits/package/
H A DValidateChecksumJob.cpp22 ValidateChecksumJob::ValidateChecksumJob(const BContext& context, argument
26 inherited(context, title),

Completed in 172 milliseconds

1234567891011>>