HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 176 - 200 of 6298) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/owasp/sanitizer/src/main/org/owasp/html/
Handler.java 40 void handle(T x); method in interface:Handler
44 public void handle(Object x) {
54 public void handle(Throwable th) {
  /external/selinux/libsemanage/include/semanage/
user_record.h 7 #include <semanage/handle.h>
19 extern int semanage_user_key_create(semanage_handle_t * handle,
23 extern int semanage_user_key_extract(semanage_handle_t * handle,
38 extern int semanage_user_set_name(semanage_handle_t * handle,
44 extern int semanage_user_set_prefix(semanage_handle_t * handle,
50 extern int semanage_user_set_mlslevel(semanage_handle_t * handle,
56 extern int semanage_user_set_mlsrange(semanage_handle_t * handle,
63 extern int semanage_user_add_role(semanage_handle_t * handle,
71 extern int semanage_user_get_roles(semanage_handle_t * handle,
76 extern int semanage_user_set_roles(semanage_handle_t * handle,
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
GrallocBufferBase.h 30 GrallocBufferBase(buffer_handle_t handle);
32 virtual void resetBuffer(buffer_handle_t handle);
39 void initBuffer(buffer_handle_t handle);
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngGrallocBuffer.h 31 TngGrallocBuffer(buffer_handle_t handle);
34 void resetBuffer(buffer_handle_t handle);
37 void initBuffer(buffer_handle_t handle);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/
TngGrallocBuffer.h 31 TngGrallocBuffer(uint32_t handle);
34 void resetBuffer(uint32_t handle);
37 void initBuffer(uint32_t handle);
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/
main3.c 12 void* handle = dlopen(argv[1], RTLD_LAZY | RTLD_GLOBAL); local
13 if (!handle) {
19 uintptr_t main_fn = (uintptr_t)dlsym(handle, "main.main");
  /prebuilts/go/linux-x86/misc/cgo/testcshared/
main3.c 12 void* handle = dlopen(argv[1], RTLD_LAZY | RTLD_GLOBAL); local
13 if (!handle) {
19 uintptr_t main_fn = (uintptr_t)dlsym(handle, "main.main");
  /system/chre/core/
audio_request_manager.cc 35 * The solution is to evict any audio events for a given audio handle that are
57 uint32_t handle,
63 handle, enable, bufferDuration, deliveryInterval, &numSamples);
66 auto *audioRequest = findAudioRequest(handle, nanoapp->getInstanceId(),
70 size_t lastNumRequests = mAudioRequestLists[handle].requests.size();
74 mAudioRequestLists[handle].requests.emplace_back(
77 postAudioSamplingChangeEvent(nanoapp->getInstanceId(), handle,
78 mAudioRequestLists[handle].available);
79 scheduleNextAudioDataEvent(handle);
90 mAudioRequestLists[handle].requests.erase(requestIndex)
128 uint32_t handle; member in struct:chre::CallbackState
215 uint32_t handle = event->handle; local
    [all...]
  /external/capstone/bindings/vb6/
vbCapstone.cpp 30 cs_err __stdcall bs_open(cs_arch arch, cs_mode mode, csh *handle){
32 return cs_open(arch, mode, handle);
35 cs_err __stdcall bs_close(csh *handle){
37 return cs_close(handle);
40 cs_err __stdcall bs_option(csh handle, cs_opt_type type, size_t value){
42 return cs_option(handle, type, value);
45 cs_err __stdcall bs_errno(csh handle){
47 return cs_errno(handle);
55 size_t __stdcall bs_disasm(csh handle, const uint8_t *code, size_t code_size, uint64_t address, size_t count, cs_insn **insn){
57 return cs_disasm(handle, code, code_size, address, count, insn);
    [all...]
  /device/google/cuttlefish_common/guest/hals/gralloc/legacy/
mapper.cpp 43 buffer_handle_t handle) {
44 if (private_handle_t::validate(handle) < 0) {
48 private_handle_t* hnd = (private_handle_t*)handle;
57 buffer_handle_t handle) {
58 if (private_handle_t::validate(handle) < 0) {
61 private_handle_t* hnd = (private_handle_t*)handle;
66 gralloc_module_t const* /*module*/, buffer_handle_t handle, int /*usage*/,
69 if (private_handle_t::validate(handle) < 0) {
75 private_handle_t* hnd = (private_handle_t*)handle;
90 gralloc_module_t const* /*module*/, buffer_handle_t handle) {
    [all...]
  /external/libchrome/crypto/
scoped_capi_types.h 22 void operator()(CAPIHandle handle) const {
23 if (handle) {
24 BOOL ok = Destroyer(handle);
36 void operator()(CAPIHandle handle) const {
37 if (handle) {
38 BOOL ok = Destroyer(handle, flags);
51 explicit ScopedCAPIHandle(CAPIHandle handle = NULL) : handle_(handle) {}
57 void reset(CAPIHandle handle = NULL) {
58 if (handle_ != handle) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
execution_tracker.cc 53 int64 handle = next_handle_++; local
55 handle,
60 execution_handle.set_handle(handle);
64 tensorflow::Status ExecutionTracker::Unregister(const ExecutionHandle& handle) {
66 auto it = handle_to_execution_.find(handle.handle());
68 return NotFound("no execution record for execution handle: %lld",
69 handle.handle());
71 handle_to_execution_.erase(handle.handle())
    [all...]
  /external/selinux/libsemanage/src/
ibpkeys_local.c 14 #include "handle.h"
17 int semanage_ibpkey_modify_local(semanage_handle_t *handle,
21 dbase_config_t *dconfig = semanage_ibpkey_dbase_local(handle);
23 return dbase_modify(handle, dconfig, key, data);
26 int semanage_ibpkey_del_local(semanage_handle_t *handle,
29 dbase_config_t *dconfig = semanage_ibpkey_dbase_local(handle);
31 return dbase_del(handle, dconfig, key);
34 int semanage_ibpkey_query_local(semanage_handle_t *handle,
38 dbase_config_t *dconfig = semanage_ibpkey_dbase_local(handle);
40 return dbase_query(handle, dconfig, key, response)
    [all...]
seusers_local.c 15 #include "handle.h"
21 static char *semanage_user_roles(semanage_handle_t * handle, const char *sename) {
29 if (semanage_user_key_create(handle, sename, &key) >= 0) {
30 if (semanage_user_query(handle, key, &user) >= 0) {
31 if (semanage_user_get_roles(handle,
54 static int semanage_seuser_audit(semanage_handle_t * handle,
74 roles = semanage_user_roles(handle, sename);
79 proles = semanage_user_roles(handle, psename);
118 int semanage_seuser_modify_local(semanage_handle_t * handle,
123 void *callback = (void *) handle->msg_callback
233 semanage_handle_t *handle; member in struct:validate_handler_arg
246 semanage_handle_t *handle = arg->handle; local
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
function-sections-are-bad.cc 19 void *handle = dlopen(path, RTLD_LAZY); local
20 if (!handle) fprintf(stderr, "%s\n", dlerror());
21 assert(handle != 0);
24 F f = (F)dlsym(handle, "call_rtl_from_dso");
29 dlclose(handle);
  /external/iproute2/include/
iptables.h 11 struct xtc_handle **handle, bool restore);
13 struct xtc_handle *handle);
15 struct xtc_handle *handle);
17 int verbose, int builtinstoo, struct xtc_handle *handle);
19 struct xtc_handle *handle, const char *chain, int counters);
  /external/iptables/include/
iptables.h 11 struct xtc_handle **handle, bool restore);
13 struct xtc_handle *handle);
15 struct xtc_handle *handle);
17 int verbose, int builtinstoo, struct xtc_handle *handle);
19 struct xtc_handle *handle, const char *chain, int counters);
  /hardware/interfaces/dumpstate/1.0/default/
DumpstateDevice.cpp 35 Return<void> DumpstateDevice::dumpstateBoard(const hidl_handle& handle) {
40 if (handle == nullptr || handle->numFds < 1) {
45 int fd = handle->data[0];
47 ALOGE("invalid FD: %d\n", handle->data[0]);
  /system/bt/btif/src/
btif_sock_sdp.cc 143 "record, handle: 0x%08x, scn: %d, name: %s, with_obex: %d",
163 uint32_t handle = SDP_CreateRecord(); local
164 if (handle == 0) {
183 if (!create_base_record(handle, name, channel, false /* with_obex */))
193 if (!SDP_AddSequence(handle, (uint16_t)ATTR_ID_SERVICE_CLASS_ID_LIST, 1,
198 "%s: service registered successfully, service_name: %s, handle: 0x%08x",
199 __func__, name, handle);
200 return handle;
203 SDP_DeleteRecord(handle);
214 uint32_t handle = SDP_CreateRecord() local
268 uint32_t handle = SDP_CreateRecord(); local
342 int handle = SDP_CreateRecord(); local
409 int handle = 0; local
    [all...]
  /frameworks/rs/cpp/
rsDispatch.cpp 26 bool loadSymbols(void* handle, dispatchTable& dispatchTab, int targetApiLevel) {
29 dispatchTab.SetNativeLibDir = (SetNativeLibDirFnPtr)dlsym(handle, "rsaContextSetNativeLibDir");
36 dispatchTab.Allocation1DData = (Allocation1DDataFnPtr)dlsym(handle, "rsAllocation1DData");
37 dispatchTab.Allocation1DElementData = (Allocation1DElementDataFnPtr)dlsym(handle, "rsAllocation1DElementData");
38 dispatchTab.Allocation1DRead = (Allocation1DReadFnPtr)dlsym(handle, "rsAllocation1DRead");
39 dispatchTab.Allocation2DData = (Allocation2DDataFnPtr)dlsym(handle, "rsAllocation2DData");
40 dispatchTab.Allocation2DRead = (Allocation2DReadFnPtr)dlsym(handle, "rsAllocation2DRead");
41 dispatchTab.Allocation3DData = (Allocation3DDataFnPtr)dlsym(handle, "rsAllocation3DData");
42 dispatchTab.Allocation3DRead = (Allocation3DReadFnPtr)dlsym(handle, "rsAllocation3DRead");
43 dispatchTab.AllocationAdapterCreate = (AllocationAdapterCreateFnPtr)dlsym(handle, "rsAllocationAdapterCreate")
    [all...]
  /external/drm_gralloc/
gralloc_drm.cpp 152 * Validate a buffer handle and return the associated bo.
157 struct gralloc_drm_handle_t *handle = gralloc_drm_handle(_handle); local
159 if (!handle)
162 /* the buffer handle is passed to a new process */
163 ALOGE("data_owner=%d gralloc_pid=%d data=%p\n", handle->data_owner, gralloc_drm_get_pid(), handle->data);
164 if (unlikely(handle->data_owner != gralloc_drm_pid)) {
171 ALOGE("handle: name=%d pfd=%d\n", handle->name,
172 handle->prime_fd)
232 struct gralloc_drm_handle_t *handle; local
259 struct gralloc_drm_handle_t *handle; local
288 struct gralloc_drm_handle_t *handle = bo->handle; local
338 struct gralloc_drm_handle_t *handle = gralloc_drm_handle(_handle); local
    [all...]
  /external/libpcap/
pcap-bt-linux.c 183 bt_activate(pcap_t* handle)
185 struct pcap_bt *handlep = handle->priv;
193 if (sscanf(handle->opt.device, BT_IFACE"%d", &dev_id) != 1)
195 pcap_snprintf(handle->errbuf, PCAP_ERRBUF_SIZE,
197 handle->opt.device);
202 handle->bufsize = BT_CTRL_SIZE+sizeof(pcap_bluetooth_h4_header)+handle->snapshot;
203 handle->linktype = DLT_BLUETOOTH_HCI_H4_WITH_PHDR;
205 handle->read_op = bt_read_linux;
206 handle->inject_op = bt_inject_linux
    [all...]
pcap-dbus.c 54 dbus_read(pcap_t *handle, int max_packets, pcap_handler callback, u_char *user)
56 struct pcap_dbus *handlep = handle->priv;
69 /* XXX handle->opt.timeout = timeout_ms; */
71 pcap_snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "Connection closed");
75 if (handle->break_loop) {
76 handle->break_loop = 0;
84 pcap_snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "Disconnected");
90 /* pkth.caplen = min (payload_len, handle->snapshot); */
93 if (handle->fcode.bf_insns == NULL ||
94 bpf_filter(handle->fcode.bf_insns, (u_char *)raw_msg, pkth.len, pkth.caplen))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeIterator.java 116 /** Return a handle to the filter used to screen nodes.
139 int handle=dtm_iter.getRoot(); local
140 return dtm_iter.getDTM(handle).getNode(handle);
163 int handle=dtm_iter.nextNode(); local
164 if (handle==DTM.NULL)
166 return dtm_iter.getDTM(handle).getNode(handle);
181 int handle=dtm_iter.previousNode(); local
182 if (handle==DTM.NULL
    [all...]
  /external/libxcam/xcore/
analyzer_loader.cpp 49 void *handle = open_handle (lib_path); local
50 //XCAM_ASSERT (handle);
51 if (!handle) {
55 desc = load_symbol (handle);
69 void *handle = NULL; local
74 handle = dlopen (lib_path, RTLD_LAZY);
75 if (!handle) {
81 _handle = handle;
82 return handle;
86 AnalyzerLoader::get_symbol (void* handle)
    [all...]

Completed in 576 milliseconds

1 2 3 4 5 6 78 91011>>