Searched refs:context (Results 276 - 300 of 343) sorted by relevance

<<11121314

/haiku/src/system/kernel/vm/
H A Dvm.cpp4713 Returns \c B_OK with \c context.restart set to \c true, if the functions
4716 Returns \c B_OK with \c context.restart set to \c false, if the page was
4717 found. It is returned in \c context.page. The address space will still be
4722 fault_get_page(PageFaultContext& context) argument
4724 VMCache* cache = context.topCache;
4733 page = cache->LookupPage(context.cacheOffset);
4736 context.UnlockAll(cache);
4741 context.restart = true;
4751 if (cache->HasPage(context.cacheOffset)) {
4753 page = vm_page_allocate_page(&context
[all...]
/haiku/src/tests/add-ons/mail/imap/
H A Dimap_tester.cpp32 error(const char* context, status_t status) argument
34 fprintf(stderr, "Error during %s: %s\n", context, strerror(status));
/haiku/src/kits/package/manager/
H A DRepositoryBuilder.cpp38 PackageInfoErrorListener(const char* context) argument
40 fContext(context)
/haiku/src/libs/compat/freebsd_iflib/
H A Dsubr_gtaskqueue.c73 typedef void (*gtaskqueue_enqueue_fn)(void *context);
135 taskqueue_enqueue_fn enqueue, void *context,
156 queue->tq_context = context;
261 gtaskqueue_task_nop_fn(void *context) argument
597 gtaskqueue_thread_enqueue(void *context) argument
601 tqp = context;
609 taskqueue_enqueue_fn enqueue, void *context)
611 return _gtaskqueue_create(name, mflags, enqueue, context,
134 _gtaskqueue_create(const char *name, int mflags, taskqueue_enqueue_fn enqueue, void *context, int mtxflags, const char *mtxname __unused) argument
608 gtaskqueue_create_fast(const char *name, int mflags, taskqueue_enqueue_fn enqueue, void *context) argument
/haiku/src/add-ons/kernel/busses/i2c/pch/
H A Dpch_i2c_acpi.cpp37 pch_i2c_scan_parse_callback(ACPI_RESOURCE *res, void *context) argument
39 struct pch_i2c_crs* crs = (struct pch_i2c_crs*)context;
H A Dpch_i2c.cpp258 pch_i2c_scan_parse_callback(ACPI_RESOURCE *res, void *context) argument
260 struct pch_i2c_crs* crs = (struct pch_i2c_crs*)context;
307 void *context, void** returnValue)
309 pch_i2c_sim_info* bus = (pch_i2c_sim_info*)context;
306 pch_i2c_scan_bus_callback(acpi_handle object, uint32 nestingLevel, void *context, void** returnValue) argument
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.h164 CfaContext& context, off_t cieOffset,
169 CompilationUnit* unit, CfaContext& context,
/haiku/src/add-ons/kernel/drivers/power/acpi_lid/
H A Dacpi_lid.cpp72 acpi_lid_notify_handler(acpi_handle _device, uint32 value, void *context) argument
74 acpi_lid_device_info *device = (acpi_lid_device_info *)context;
/haiku/src/add-ons/kernel/drivers/power/acpi_ac/
H A Dacpi_ac.cpp65 acpi_ac_notify_handler(acpi_handle device, uint32 value, void *context) argument
72 acpi_ac_device_info* dev = (acpi_ac_device_info*) context;
/haiku/headers/private/kernel/
H A Dvfs.h47 /** The I/O context of a process/team, holds the fd array among others */
72 void vfs_exec_io_context(io_context *context);
75 void vfs_get_io_context(io_context *context);
76 void vfs_put_io_context(io_context *context);
77 status_t vfs_resize_fd_table(struct io_context* context, uint32 newSize);
128 status_t vfs_release_posix_lock(io_context* context,
/haiku/src/system/kernel/events/
H A Devent_queue.cpp631 io_context* context = get_current_io_context(false); local
632 int fd = new_fd(context, descriptor);
638 mutex_lock(&context->io_mutex);
639 fd_set_close_on_exec(context, fd, (openFlags & O_CLOEXEC) != 0);
640 mutex_unlock(&context->io_mutex);
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.c30 unsigned int context,
907 /* Return the context at IDX in INPUT. */
1445 calc_state_hash (const re_node_set *nodes, unsigned int context)
1447 unsigned int hash = nodes->nelem + context;
1498 whose context is equivalent to CONTEXT.
1510 const re_node_set *nodes, unsigned int context)
1521 hash = calc_state_hash (nodes, context);
1528 && state->context == context
1533 new_state = create_cd_newstate (dfa, nodes, context, has
1442 calc_state_hash(const re_node_set *nodes, unsigned int context) argument
1506 re_acquire_state_context(reg_errcode_t *err, const re_dfa_t *dfa, const re_node_set *nodes, unsigned int context) argument
1646 create_cd_newstate(const re_dfa_t *dfa, const re_node_set *nodes, unsigned int context, unsigned int hash) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEFileSystem.cpp188 FUSEFileSystem::InitRequestThreadContext(RequestThreadContext* context) argument
201 KernelRequest* request = context->GetRequest();
202 fuse_context* fuseContext = (fuse_context*)context->GetFSData();
/haiku/src/system/kernel/arch/m68k/
H A Darch_int.cpp596 m68k_set_current_cpu_exception_context(struct m68k_cpu_exception_context *context)
600 addr_t inPageOffset = (addr_t)context & (B_PAGE_SIZE - 1);
602 (addr_t)context - inPageOffset, &physicalPage);
/haiku/headers/os/interface/
H A DLayout.h117 BLayoutContext* context);
/haiku/headers/os/media/
H A DMediaEventLooper.h107 void* context);
/haiku/headers/private/debugger/arch/
H A DArchitecture.h72 virtual status_t InitRegisterRules(CfaContext& context) const;
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp813 MD5_CTX context; local
815 MD5Init(&context);
816 MD5Update(&context, in, ::strlen((char*)in));
817 MD5Final(digest, &context);
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_crypto.c325 size_t label_len, const u_int8_t *context, size_t context_len,
335 HMAC_SHA1_Update(&ctx, context, context_len);
354 size_t label_len, const u_int8_t *context, size_t context_len,
367 HMAC_SHA256_Update(&ctx, context, context_len);
324 ieee80211_prf(const u_int8_t *key, size_t key_len, const u_int8_t *label, size_t label_len, const u_int8_t *context, size_t context_len, u_int8_t *output, size_t len) argument
353 ieee80211_kdf(const u_int8_t *key, size_t key_len, const u_int8_t *label, size_t label_len, const u_int8_t *context, size_t context_len, u_int8_t *output, size_t len) argument
/haiku/headers/private/netservices/
H A DHttpRequest.h75 BUrlContext* context = NULL);
/haiku/src/system/libnetwork/netresolv/dst/
H A Ddst_api.c219 * First the context must be initialized (SIG_MODE_INIT).
247 dst_sign_data(const int mode, DST_KEY *in_key, void **context, argument
258 return (in_key->dk_func->sign(mode, in_key, context, data, len,
266 * First the context must be initialized (SIG_MODE_INIT).
290 dst_verify_data(const int mode, DST_KEY *in_key, void **context, argument
301 return (in_key->dk_func->verify(mode, in_key, context, data, len,
/haiku/src/add-ons/kernel/busses/virtio/virtio_mmio/
H A Dvirtio_mmio.cpp138 virtio_crs_find_address(acpi_resource *res, void *context) argument
140 virtio_memory_range &range = *((virtio_memory_range *)context);
152 virtio_crs_find_interrupt(acpi_resource *res, void *context) argument
154 uint64 &interrupt = *((uint64 *)context);
/haiku/src/add-ons/kernel/busses/pci/ecam/
H A DECAMPCIController.h152 static acpi_status AcpiCrsScanCallback(acpi_resource *res, void *context);
/haiku/src/apps/haikudepot/model/
H A DModel.h63 void* context) = 0;
/haiku/src/kits/media/
H A DMediaEventLooper.cpp520 void *context)
523 ((BMediaEventLooper *)context)->_DispatchCleanUp(event);
519 _CleanUpEntry(const media_timed_event *event, void *context) argument

Completed in 153 milliseconds

<<11121314