HomeSort by: relevance | last modified time | path
    Searched defs:api (Results 1 - 12 of 12) sorted by relevancy

  /src/external/bsd/openldap/dist/libraries/libldap/
apitest.c 3 /* apitest.c -- OpenLDAP API Test Program */
37 LDAPAPIInfo api; local
41 printf("Compile time API Information\n");
44 api.ldapai_info_version = LDAP_API_INFO_VERSION;
45 printf(" API Info version: %d\n", (int) api.ldapai_info_version);
47 api.ldapai_info_version = 1;
48 printf(" API Info version: unknown\n");
55 api.ldapai_info_version = 1;
59 printf(" API version: %d\n", (int) LDAP_API_VERSION)
    [all...]
  /src/sbin/ifconfig/
agr.c 130 struct agrportinfo *api; local
165 api = (void *)(apl + 1);
170 snprintb(tmp, sizeof(tmp), AGRPORTINFO_BITS, api->api_flags);
171 printf("\tagrport: %s, flags=%s\n", api->api_ifname, tmp);
172 api++;
  /src/usr.sbin/apm/
apm.c 152 struct apm_power_info *api = &reply.batterystate; local
278 battstate(api->battery_state));
280 if (dopct && domin && api->minutes_left == 0)
287 api->battery_life);
292 api->minutes_left);
299 ac_state(api->ac_state));
302 if (api->nbattery) {
304 api->nbattery);
308 printf("%d\n", api->battery_state);
310 printf("%d\n", api->battery_life)
    [all...]
  /src/lib/libkvm/
kvm_powerpc.c 177 _kvm_scan_pteg(struct pteg *pteg, uint32_t vsid, uint32_t api, int secondary)
192 if (((ptehi & PTE_API) >> PTE_API_SHFT) != api)
207 uint32_t sr, pgoff, vsid, pgidx, api, hash; local
222 api = pgidx >> 10;
239 if ((pte = _kvm_scan_pteg(&pteg, vsid, api, 0)) != NULL) {
257 if ((pte = _kvm_scan_pteg(&pteg, vsid, api, 0)) != NULL) {
  /src/sys/external/bsd/vchiq/dist/interface/vchi/connections/
connection.h 55 API
314 const VCHI_CONNECTION_API_T *api; member in struct:vchi_connection_t
  /src/sys/net/agr/
if_agr.c 214 * XXX better to introduce an API to transmit pre-built frames.
459 struct agrportinfo api; local
466 memset(&api, 0, sizeof(api));
482 if (bufleft < sizeof(api)) {
485 memcpy(api.api_ifname, port->port_ifp->if_xname,
486 sizeof(api.api_ifname));
487 api.api_flags = 0;
489 api.api_flags |= AGRPORTINFO_COLLECTING;
492 api.api_flags |= AGRPORTINFO_DISTRIBUTING
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 720 const APInt &api = CI->getValue(); local
723 apf.convertFromAPInt(api, opc==Instruction::SIToFP,
  /src/external/ibm-public/postfix/dist/src/global/
dict_ldap.c 233 LDAPAPIInfo api; local
239 api.ldapai_info_version = LDAP_API_INFO_VERSION;
240 if (ldap_get_option(0, LDAP_OPT_API_INFO, &api) != LDAP_SUCCESS
241 || api.ldapai_info_version != LDAP_API_INFO_VERSION) {
242 if (api.ldapai_info_version != LDAP_API_INFO_VERSION)
244 myname, api.ldapai_info_version, LDAP_API_INFO_VERSION);
248 if (strcmp(api.ldapai_vendor_name, LDAP_VENDOR_NAME) != 0)
249 msg_fatal("%s: run-time API vendor: %s, compiled with: %s",
250 myname, api.ldapai_vendor_name, LDAP_VENDOR_NAME);
252 return (api.ldapai_vendor_version)
    [all...]
  /src/external/bsd/openldap/dist/clients/tools/
common.c 1071 LDAPAPIInfo api; local
1072 api.ldapai_info_version = LDAP_API_INFO_VERSION;
1074 if ( ldap_get_option(NULL, LDAP_OPT_API_INFO, &api)
1081 if (api.ldapai_info_version != LDAP_API_INFO_VERSION) {
1084 api.ldapai_info_version, LDAP_API_INFO_VERSION );
1088 if( api.ldapai_api_version != LDAP_API_VERSION ) {
1089 fprintf( stderr, "LDAP API version mismatch: "
1091 api.ldapai_api_version, LDAP_API_VERSION );
1095 if( strcmp(api.ldapai_vendor_name, LDAP_VENDOR_NAME ) != 0 ) {
1098 api.ldapai_vendor_name, LDAP_VENDOR_NAME )
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 2492 // api needed to prevent premature destruction
2494 APInt api = CFP->getValueAPF().bitcastToAPInt(); local
2495 const uint64_t *p = api.getRawData();
2499 APInt api = CFP->getValueAPF().bitcastToAPInt(); local
2500 const uint64_t *p = api.getRawData();
  /src/sys/dev/pci/
if_iwm.c 735 uint32_t major, uint32_t minor, uint32_t api)
742 snprintf(buf, bufsize, "%u.%08x.%u", major, minor, api);
744 snprintf(buf, bufsize, "%u.%u.%u", major, minor, api);
921 struct iwm_ucode_api *api; local
924 if (tlv_len != sizeof(*api)) {
928 api = (struct iwm_ucode_api *)tlv_data;
929 idx = le32toh(api->api_index);
930 bits = le32toh(api->api_flags);
  /src/external/public-domain/sqlite/dist/
sqlite3.c 336 ** not a published API of SQLite, is subject to change without
345 ** The official C-language API documentation for SQLite is derived
808 ** In its default configuration, SQLite API routines return one of 30 integer
817 ** [sqlite3_extended_result_codes()] API. Or, the extended code for
1766 ** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the
2704 ** The [sqlite3_enable_load_extension()] API enables or disables both the
2705 ** C-API [sqlite3_load_extension()] and the SQL function [load_extension()].
2707 ** When the first argument to this interface is 1, then only the C-API is
2709 ** this interface is 0, then both the C-API and the SQL function are disabled.
2711 ** the C-API or the SQL function
259703 fts5_api api; \/* User visible part of object (see fts5.h) *\/ member in struct:Fts5Global
    [all...]

Completed in 173 milliseconds