HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 326 - 350 of 2854) sorted by null

<<11121314151617181920>>

  /system/bt/osi/include/
osi.h 64 // Re-run |fn| system call until the system call doesn't cause EINTR.
65 #define OSI_NO_INTR(fn) \
67 } while ((fn) == -1 && errno == EINTR)
  /system/core/init/
devices.h 48 extern coldboot_action_t handle_device_fd(coldboot_callback fn = nullptr);
49 extern void device_init(const char* path = nullptr, coldboot_callback fn = nullptr);
  /system/core/libcutils/
load_file.c 22 void *load_file(const char *fn, unsigned *_sz)
29 fd = open(fn, O_RDONLY);
  /packages/apps/Nfc/nci/jni/
NfcTag.cpp 153 static const char fn [] = "NfcTag::setDeactivationState"; local
158 ALOGV("%s: state=%u", fn, mActivationState);
173 static const char fn [] = "NfcTag::setActivationState"; local
176 ALOGV("%s: state=%u", fn, mActivationState);
249 static const char fn [] = "NfcTag::IsSameKovio"; local
250 ALOGV("%s: enter", fn);
285 ALOGV("%s: exit, is same Kovio=%d", fn, rVal);
302 static const char fn [] = "NfcTag::discoverTechnologies (activation)"; local
303 ALOGV("%s: enter", fn);
394 ALOGV("%s: Kovio", fn);
438 static const char fn [] = "NfcTag::discoverTechnologies (discovery)"; local
566 static const char fn [] = "NfcTag::createNativeNfcTag"; local
637 static const char fn [] = "NfcTag::fillNativeNfcTagMembers1"; local
688 static const char fn [] = "NfcTag::fillNativeNfcTagMembers2"; local
712 static const char fn [] = "NfcTag::fillNativeNfcTagMembers3"; local
827 static const char fn [] = "NfcTag::fillNativeNfcTagMembers4"; local
958 static const char fn [] = "NfcTag::fillNativeNfcTagMembers5"; local
1038 static const char fn [] = "NfcTag::isP2pDiscovered"; local
1067 static const char fn [] = "NfcTag::selectP2p"; local
1117 static const char fn [] = "NfcTag::resetTechnologies"; local
1141 static const char fn [] = "NfcTag::selectFirstTag"; local
1189 static const char fn [] = "NfcTag::getT1tMaxMessageSize"; local
1212 static const char fn [] = "NfcTag::calculateT1tMaxMessageSize"; local
1249 static const char fn [] = "NfcTag::isMifareUltralight"; local
1285 static const char fn [] = "NfcTag::isMifareDESFire"; local
1341 static const char fn [] = "NfcTag::isT2tNackResponse"; local
1384 static const char fn [] = "NfcTag::connectionEventHandler"; local
1510 static const char fn [] = "NfcTag::getTransceiveTimeout"; local
1533 static const char fn [] = "NfcTag::setTransceiveTimeout"; local
1567 static const char fn [] = "NfcTag::isInfineonMyDMove"; local
1601 static const char fn [] = "NfcTag::isKovioType2Tag"; local
    [all...]
  /external/kmod/libkmod/
libkmod.c 54 const char *fn; member in struct:_index_files
57 [KMOD_INDEX_MODULES_DEP] = { .fn = "modules.dep", .prefix = "" },
58 [KMOD_INDEX_MODULES_ALIAS] = { .fn = "modules.alias", .prefix = "alias " },
59 [KMOD_INDEX_MODULES_SYMBOL] = { .fn = "modules.symbols", .prefix = "alias "},
60 [KMOD_INDEX_MODULES_BUILTIN] = { .fn = "modules.builtin", .prefix = ""},
80 const char *fn, const char *format, va_list args);
91 int priority, const char *file, int line, const char *fn,
100 ctx->log_fn(ctx->log_data, priority, file, line, fn, format, args);
107 const char *fn, const char *format, va_list args)
142 fprintf(fp, "libkmod: %s %s:%d %s: ", priname, file, line, fn);
438 char fn[PATH_MAX]; local
506 char fn[PATH_MAX]; local
569 char fn[PATH_MAX]; local
926 char fn[PATH_MAX]; local
    [all...]
  /external/syslinux/com32/modules/
cptime.c 116 void print_cp_result_long(char *fn, size_t bcnt, clock_t bc, clock_t ec, size_t bufsz, char do_verbose)
122 printf(" %zu B in %d ticks from '%s'\n", bcnt, (int)(ec - bc), fn);
127 } /* void print_cp_result_long(char *fn, size_t bcnt, clock_t bc, clock_t ec, size_t bufsz) */
129 void print_cp_result_simple(char *fn, size_t bcnt, clock_t bc, clock_t ec, size_t bufsz, char do_verbose)
132 printf(" %zuB %dt %zux '%s'\n", bcnt, (int)(ec - bc), bufsz, fn);
133 } /* void print_cp_result_simple(char *fn, int bcnt, clock_t bc, clock_t ec, char do_verbose) */
140 int time_copy(char *fn, char do_simple, char do_verbose, size_t ibufsz, off_t maxlen)
154 printf("Trying file '%s'\n", fn);
156 // fd = open(fn, O_RDONLY);
157 f = fopen(fn, "r")
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
wifi_hal.cpp 320 wifi_error init_wifi_vendor_hal_func_table(wifi_hal_fn *fn) {
321 if (fn == NULL) {
325 fn->wifi_initialize = wifi_initialize;
326 fn->wifi_cleanup = wifi_cleanup;
327 fn->wifi_event_loop = wifi_event_loop;
328 fn->wifi_get_supported_feature_set = wifi_get_supported_feature_set;
329 fn->wifi_get_concurrency_matrix = wifi_get_concurrency_matrix;
330 fn->wifi_set_scanning_mac_oui = wifi_set_scanning_mac_oui;
331 fn->wifi_get_ifaces = wifi_get_ifaces;
332 fn->wifi_get_iface_name = wifi_get_iface_name
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
tests.go 83 func checkExample(fn *ast.FuncDecl, f *File, report reporter) {
84 fnName := fn.Name.Name
85 if params := fn.Type.Params; len(params.List) != 0 {
88 if results := fn.Type.Results; results != nil && len(results.List) != 0 {
142 func checkTest(fn *ast.FuncDecl, prefix string, report reporter) {
144 if fn.Type.Results != nil && len(fn.Type.Results.List) > 0 ||
145 fn.Type.Params == nil ||
146 len(fn.Type.Params.List) != 1 ||
147 len(fn.Type.Params.List[0].Names) > 1
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
tests.go 83 func checkExample(fn *ast.FuncDecl, f *File, report reporter) {
84 fnName := fn.Name.Name
85 if params := fn.Type.Params; len(params.List) != 0 {
88 if results := fn.Type.Results; results != nil && len(results.List) != 0 {
142 func checkTest(fn *ast.FuncDecl, prefix string, report reporter) {
144 if fn.Type.Results != nil && len(fn.Type.Results.List) > 0 ||
145 fn.Type.Params == nil ||
146 len(fn.Type.Params.List) != 1 ||
147 len(fn.Type.Params.List[0].Names) > 1
    [all...]
  /external/valgrind/memcheck/tests/
cond_ld_st.c 353 void do_test_case_steer ( void (*fn)(int,Bool,const TestCase*),
357 if (i == 0) { fn(i,isLd,tc); return; };
359 if (i == 1) { fn(i,isLd,tc); return; };
361 if (i == 2) { fn(i,isLd,tc); return; };
363 if (i == 3) { fn(i,isLd,tc); return; };
365 if (i == 4) { fn(i,isLd,tc); return; };
367 if (i == 5) { fn(i,isLd,tc); return; };
369 if (i == 6) { fn(i,isLd,tc); return; };
371 if (i == 7) { fn(i,isLd,tc); return; };
373 if (i == 8) { fn(i,isLd,tc); return; }
    [all...]
  /art/sigchainlib/
sigchain.h 35 extern "C" void RemoveSpecialSignalHandlerFn(int signal, bool (*fn)(int, siginfo_t*, void*));
  /bionic/libc/private/
bionic_vdso.h 47 void* fn; member in struct:vdso_entry
  /bootable/recovery/otautil/
SysUtil.h 40 * Map a file into a private, read-only memory segment. If 'fn'
46 int sysMapFile(const char* fn, MemMapping* pMap);
  /development/ndk/platforms/android-9/include/linux/
cpu.h 32 #define hotcpu_notifier(fn, pri) do { } while (0)
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
key.h 49 char *fn; /* Filename to load/store the key */ member in struct:key_s
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
io.h 60 #define PCIADDR(bus,dev,fn,reg) ( \
64 ((fn) << 12) + \
110 uint32_t fn,
117 uint32_t fn,
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
md_var.h 43 #define FDESC_FUNC(fn) (((struct ia64_fdesc *) fn)->func)
44 #define FDESC_GP(fn) (((struct ia64_fdesc *) fn)->gp)
  /external/clang/test/SemaCXX/
deleted-function.cpp 5 void fn() = delete; // expected-note {{candidate function has been explicitly deleted}}
19 void fn() = delete; // expected-note {{'fn' has been explicitly marked deleted here}}
27 fn(); // expected-error {{call to deleted function 'fn'}}
33 d->fn(); // expected-error {{attempt to use a deleted function}}
  /external/fio/crc/
test.c 32 void (*fn)(struct test_type *, void *, size_t); member in struct:test_type
187 .fn = t_md5,
192 .fn = t_crc64,
197 .fn = t_crc32,
202 .fn = t_crc32c,
207 .fn = t_crc16,
212 .fn = t_crc7,
217 .fn = t_sha1,
222 .fn = t_sha256,
227 .fn = t_sha512
    [all...]
  /external/flatbuffers/samples/
android_sample.sh 21 sampledir=$(readlink -fn `dirname $0`)
22 currentdir=$(readlink -fn `pwd`)
  /external/flatbuffers/tests/
JavaTest.sh 21 testdir=$(readlink -fn `dirname $0`)
22 thisdir=$(readlink -fn `pwd`)
  /external/pdfium/testing/
embedder_test_mock_delegate.h 17 MOCK_METHOD2(SetTimer, int(int msecs, TimerCallback fn));
embedder_test_timer_handling_delegate.h 28 TimerCallback fn; member in struct:EmbedderTestTimerHandlingDelegate::Timer
40 int SetTimer(int msecs, TimerCallback fn) override {
43 std::pair<int, Timer>(msecs + fake_elapsed_msecs_, {id, msecs, fn}));
72 t.fn(t.id); // Fire timer.
  /external/valgrind/coregrind/
pub_core_demangle.h 63 /*OUT*/const HChar** fn,
  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletionStage.java 165 * @param fn the function to use to compute the value of the
170 public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn);
181 * @param fn the function to use to compute the value of the
187 (Function<? super T,? extends U> fn);
197 * @param fn the function to use to compute the value of the
204 (Function<? super T,? extends U> fn,
302 * @param fn the function to use to compute the value of the
310 BiFunction<? super T,? super U,? extends V> fn);
322 * @param fn the function to use to compute the value of the
330 BiFunction<? super T,? super U,? extends V> fn);
    [all...]

Completed in 592 milliseconds

<<11121314151617181920>>