I hereby claim:
- I am wonder93 on github.
- I am omos (https://keybase.io/omos) on keybase.
- I have a public key ASARFIKiby968Vv4EWA71JwQNwqLENMQh_ASqmXjJDBSMQo
To claim this, I am signing this object:
diff --git a/tests/binder/binder_common.c b/tests/binder/binder_common.c | |
index 7cf6c74..1897065 100644 | |
--- a/tests/binder/binder_common.c | |
+++ b/tests/binder/binder_common.c | |
@@ -127,13 +127,13 @@ void print_trans_data(const struct binder_transaction_data *txn_in) | |
} | |
#if HAVE_BINDERFS | |
printf("\tflags: priority: 0x%x accept FDS: %s request security CTX: %s\n", | |
- obj->flags & FLAT_BINDER_FLAG_PRIORITY_MASK, | |
- obj->flags & FLAT_BINDER_FLAG_ACCEPTS_FDS ? "YES" : "NO", |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
set -e | |
set -o pipefail | |
function any_line() | |
{ | |
local n=$(wc -l) | |
[ $n -gt 1 ] && echo "$n" | |
[ $n -ne 0 ] |
#!/usr/bin/python3 | |
import setools | |
from collections import defaultdict | |
def build_ddict(p): | |
res = {} | |
for t in p.types(): | |
res[str(t)] = [str(t)] + [str(a) for a in t.attributes()] |
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "usage: [SYZYGY_PATH='...'] [BENCH_ARGS='...'] $0 COMMIT..." | |
echo | |
echo " Prints bench for each COMMIT. Output is stored in 'bench-COMMIT.log'." | |
echo | |
echo " Command-line arguments:" | |
echo " COMMIT... list of commits to check" | |
echo |
/* | |
* Copyright (C) 2016, Ondrej Mosnacek <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* |
#ifndef _CRYPTO_PROFILING_H | |
#define _CRYPTO_PROFILING_H | |
#ifdef USE_PROFILING | |
#include <linux/ktime.h> | |
#ifndef PROFILING_STACK_SIZE | |
#define PROFILING_STACK_SIZE 64 | |
#endif |
#!/bin/bash | |
VERSIONS='1.6.8 1.7.0' | |
BACKENDS='openssl gcrypt' | |
HASHES='ripemd160 sha1 sha256 sha512' | |
TEMPFILE=$(mktemp) | |
dd if=/dev/zero of="$TEMPFILE" count=1 bs=8M |
#!/bin/sh | |
prefix=/usr | |
exec_prefix=${prefix} | |
libdir=${exec_prefix}/lib | |
. ${libdir}/grub/grub-mkconfig_lib | |
ROOTDIR="" | |
ISODIR="home/shared/iso" |