Searched defs:open (Results 1 - 25 of 35) sorted by relevance

12

/system/bt/hci/include/
H A Dhci_inject.h28 bool (*open)(const hci_t* hci_interface); member in struct:hci_inject_t
H A Dhci_hal.h45 // HAL will deny all requests to open the pod bay doors after this.
57 bool (*open)(void); member in struct:hci_hal_t
H A Dvendor.h54 bool (*open)(const uint8_t* local_bdaddr, const hci_t* hci_interface); member in struct:vendor_t
/system/core/libstats/
H A Dstatsd_writer.h37 int (*open)(); /* can be called multiple times, reusing current resources */ member in struct:android_log_transport_write
/system/security/keystore/
H A Dentropy.cpp37 bool Entropy::open() { function in class:Entropy
39 mRandom = TEMP_FAILURE_RETRY(::open(randomDevice, O_RDONLY));
41 ALOGE("open: %s: %s", randomDevice, strerror(errno));
/system/chre/pal/include/chre/pal/
H A Dwwan.h87 bool (*open)(const struct chrePalSystemApi *systemApi, member in struct:chrePalWwanApi
H A Dgnss.h68 * (from the client's perspective) restore open sessions.
163 bool (*open)(const struct chrePalSystemApi *systemApi, member in struct:chrePalGnssApi
H A Dwifi.h170 bool (*open)(const struct chrePalSystemApi *systemApi, member in struct:chrePalWifiApi
/system/extras/perfprofd/scripts/
H A Dperf_proto_json2sqlite.py30 def open(self, out): member in class:SqliteWriter
152 sql_out.open(args.sqlite_out)
157 fp = open(f, 'r')
H A Dperf_proto_stack_sqlite_flame.py106 def open(self, f): member in class:SqliteReader
174 f = open(filename, 'w')
200 with open(script_js, 'r') as script_f:
228 sql_out.open(args.file)
/system/core/base/
H A Dutf8.cpp207 int open(const char* name, int flags, ...) { function in namespace:android::base::utf8
/system/nfc/src/include/
H A Dnfc_hal_api.h55 tHAL_API_OPEN* open; member in struct:__anon2138
/system/bt/bta/include/
H A Dbta_pan_api.h81 tBTA_PAN_STATUS status; /* status of open event */
95 tBTA_PAN_OPEN open; /* Connection has been opened. */ member in union:__anon436
157 * When connection is open callback function is called
/system/bt/stack/avdt/
H A Davdt_ad.cc314 /* if signaling channel, notify ccb that channel open */
341 * for the channel and sends it an open event.
350 tAVDT_OPEN open; local
359 /* if signaling channel, notify ccb that channel open */
377 /* if media or other channel, notify scb that channel open */
386 open.peer_mtu = p_tbl->peer_mtu;
387 open.lcid = avdtp_cb.ad.rt_tbl[p_tbl->ccb_idx][p_tbl->tcid].lcid;
388 open.hdr.err_code = avdt_ad_tcid_to_type(p_tbl->tcid);
390 avdt_scb_evt.open = open;
[all...]
/system/core/init/
H A Dbootchart.cpp61 if (!result) PLOG(ERROR) << "bootchart: failed to open " << filename;
125 size_t open = stat.find('('); local
127 if (open != std::string::npos && close != std::string::npos) {
128 stat.replace(open + 1, close - open - 1, full_name);
/system/core/libutils/
H A DTokenizer.cpp48 status_t Tokenizer::open(const String8& filename, Tokenizer** outTokenizer) { function in class:android::Tokenizer
52 int fd = ::open(filename.string(), O_RDONLY);
/system/bt/bta/ag/
H A Dbta_ag_act.cc71 * Description Send open callback event to application.
79 tBTA_AG_OPEN open = {}; local
81 /* call app callback with open event */
82 open.hdr.handle = bta_ag_scb_to_idx(p_scb);
83 open.hdr.app_id = p_scb->app_id;
84 open.status = status;
85 open.service_id = bta_ag_svc_id[p_scb->conn_service];
86 open.bd_addr = bd_addr;
88 (*bta_ag_cb.p_cback)(BTA_AG_OPEN_EVT, (tBTA_AG*)&open);
170 * Description This starts an AG open
[all...]
/system/bt/stack/mcap/
H A Dmca_main.cc317 * for the channel and sends it an open event.
325 tMCA_OPEN open; local
331 open.peer_mtu = p_tbl->peer_mtu;
332 open.lcid = p_tbl->lcid;
335 open.param = MCA_INT;
337 open.param = MCA_ACP;
340 /* if control channel, notify ccb that the channel is open */
344 mca_ccb_evt.open = open;
347 /* must be data channel, notify dcb that the channel is open */
[all...]
/system/core/adb/
H A Dtransport_local.cpp247 * Redefine open and write for qemu_pipe.h that contains inlined references
250 #undef open macro
253 #define open adb_open macro
257 #undef open macro
260 #define open ___xxx_open macro
H A Dsysdeps.h32 // Include this before open/close/unlink are defined as macros below.
158 #define open ___xxx_unix_open macro
299 // Note that this does not make a HANDLE value work with APIs like open(), nor
300 // does this make a value from open() passable to APIs taking a HANDLE. This
373 // On Unix, this is based on open(), so the file descriptor is a real OS file
383 return TEMP_FAILURE_RETRY( open(path, options) );
392 return TEMP_FAILURE_RETRY( open( path, options, mode ) );
400 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) );
407 // On Unix, this is based on open(), but the Windows implementation (in
413 int fd = TEMP_FAILURE_RETRY( open( pathnam
[all...]
/system/core/liblog/
H A Dlogger.h47 int (*open)(); /* can be called multiple times, reusing current resources */ member in struct:android_log_transport_write
70 * Expect all to instantiate open automagically on any call,
71 * so we do not have an explicit open call.
/system/extras/libfec/include/fec/
H A Dio.h128 open(fn, mode, flags, roots);
135 bool open(const std::string& fn, int mode = O_RDONLY, int flags = 0, function in class:fec::io
/system/libhwbinder/
H A DProcessState.cpp350 int fd = open("/dev/hwbinder", O_RDWR | O_CLOEXEC);
320 LOG_ALWAYS_FATAL_IF(maxThreads < 1, �); status_t result = NO_ERROR; size_t kernelMaxThreads = maxThreads - 1; if (ioctl(mDriverFD, BINDER_SET_MAX_THREADS, &kernelMaxThreads) != -1) { AutoMutex _l(mLock); mMaxThreads = maxThreads; mSpawnThreadOnStart = !callerJoinsPool; } else { result = -errno; ALOGE(�, strerror(-result)); } return result; } size_t ProcessState::getMaxThreads() { return mMaxThreads; } void ProcessState::giveThreadPoolName() { androidSetThreadName( makeBinderThreadName().string() ); } static int open_driver() { int fd = open(�, O_RDWR | O_CLOEXEC); if (fd >= 0) argument
/system/netd/server/
H A DSockDiag.cpp73 bool SockDiag::open() { function in class:android::net::SockDiag
/system/bt/stack/include/
H A Dsdp_api.h82 tSDP_DR_OPEN open; member in union:__anon1264

Completed in 1266 milliseconds

12